ColossalAI/extensions/csrc/__init__.py

12 lines
350 B
Python
Raw Normal View History

2021-12-21 04:19:52 +00:00
from .layer_norm import MixedFusedLayerNorm as LayerNorm
2022-01-13 08:47:17 +00:00
from .multihead_attention import MultiHeadAttention
from .scaled_softmax import AttnMaskType, FusedScaleMaskSoftmax, ScaledUpperTriangMaskedSoftmax
__all__ = [
"LayerNorm",
"MultiHeadAttention",
"FusedScaleMaskSoftmax",
"ScaledUpperTriangMaskedSoftmax",
"AttnMaskType",
]