Skip to content

Commit 80cdec5

Browse files
committed
fix
Signed-off-by: jiahanc <[email protected]>
1 parent 688521d commit 80cdec5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csrc/trtllm_fused_moe_kernel_launcher.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Tensor trtllm_fp8_per_tensor_scale_moe_launcher(
6565
RoutingMethodType::DeepSeekV3) {
6666
TVM_FFI_ICHECK_EQ(routing_logits->dtype, dl_float32) << "routing_logits must be float.";
6767
} else {
68-
// TVM_FFI_ICHECK_EQ(routing_logits->dtype, dl_bfloat16) << "routing_logits must be bfloat16.";
68+
TVM_FFI_ICHECK_EQ(routing_logits->dtype, dl_bfloat16) << "routing_logits must be bfloat16.";
6969
}
7070
TVM_FFI_ICHECK_EQ(routing_logits->ndim, 2) << "routing_logits must be 2D.";
7171
TVM_FFI_ICHECK_EQ(routing_logits->shape[1], num_experts) << "routing_logits has incorrect shape.";

0 commit comments

Comments
 (0)