Fix B200 Nightly tests and move one manual test back to unit test to prevent the same issue (#13746)
This commit is contained in:
@@ -1037,7 +1037,9 @@ class FlashInferFusedMoE(FusedMoE):
|
|||||||
final_hidden_states = self.quant_method.apply_with_router_logits(
|
final_hidden_states = self.quant_method.apply_with_router_logits(
|
||||||
layer=self,
|
layer=self,
|
||||||
dispatch_output=StandardDispatchOutput(
|
dispatch_output=StandardDispatchOutput(
|
||||||
hidden_states=hidden_states, topk_output=topk_output
|
hidden_states=hidden_states,
|
||||||
|
hidden_states_scale=None,
|
||||||
|
topk_output=topk_output,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -116,6 +116,7 @@ suites = {
|
|||||||
TestFile("test_swa_unittest.py", 1),
|
TestFile("test_swa_unittest.py", 1),
|
||||||
TestFile("test_torch_compile.py", 76),
|
TestFile("test_torch_compile.py", 76),
|
||||||
TestFile("test_torch_compile_moe.py", 210),
|
TestFile("test_torch_compile_moe.py", 210),
|
||||||
|
TestFile("test_triton_fused_moe.py", 80),
|
||||||
TestFile("test_torch_native_attention_backend.py", 123),
|
TestFile("test_torch_native_attention_backend.py", 123),
|
||||||
TestFile("test_torchao.py", 70),
|
TestFile("test_torchao.py", 70),
|
||||||
TestFile("test_triton_attention_kernels.py", 4),
|
TestFile("test_triton_attention_kernels.py", 4),
|
||||||
|
|||||||
@@ -115,7 +115,7 @@ class TestFusedMOE(CustomTestCase):
|
|||||||
quant_info = TritonKernelsQuantInfo(w13_weight=w1_tri, w2_weight=w2_tri)
|
quant_info = TritonKernelsQuantInfo(w13_weight=w1_tri, w2_weight=w2_tri)
|
||||||
|
|
||||||
dispatch_output = StandardDispatchOutput(
|
dispatch_output = StandardDispatchOutput(
|
||||||
hidden_states=a, topk_output=triton_topk_output
|
hidden_states=a, hidden_states_scale=None, topk_output=triton_topk_output
|
||||||
)
|
)
|
||||||
|
|
||||||
torch_per_expert = self.torch_naive_moe(
|
torch_per_expert = self.torch_naive_moe(
|
||||||
Reference in New Issue
Block a user