We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b4adfa commit 66b9f22Copy full SHA for 66b9f22
tensorrt_llm/_torch/modules/fused_moe/fused_moe_trtllm_gen.py
@@ -68,6 +68,9 @@ def __init__(
68
weight_loading_mode=weight_loading_mode,
69
)
70
71
+ sm_version = get_sm_version()
72
+ assert sm_version < 120, "TRTLLMGenFusedMoE does not support SM120 and SM121."
73
+
74
assert not self.smart_router, "Smart router is not supported in TRTLLMGenFusedMoE."
75
76
self.num_slots = self.num_experts
0 commit comments