Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion fastdeploy/model_executor/layers/backends/metax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,16 @@

from .attention.flash_attn_backend import FlashAttentionBackend
from .attention.mla_attn_metax_backend import MetaxMLAAttentionBackend
from .moe.fused_moe_cutlass_metax_backend import MetaxCutlassWeightOnlyMoEMethod
from .moe.fused_moe_cutlass_metax_backend import (
MetaxCutlassUnquantizedFusedMoEMethod,
MetaxCutlassWeightOnlyMoEMethod,
)
from .moe.fused_moe_triton_metax_backend import MetaxTritonWeightOnlyMoEMethod

__all__ = [
"FlashAttentionBackend",
"MetaxMLAAttentionBackend",
"MetaxTritonWeightOnlyMoEMethod",
"MetaxCutlassWeightOnlyMoEMethod",
"MetaxCutlassUnquantizedFusedMoEMethod",
]
Loading
Loading