Skip to content

Commit 0f1060c

Browse files
committed
reduce test size for sparse mla
1 parent 1fb79d6 commit 0f1060c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/deepseek_v32/test_tilelang_example_deepseek_v32.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,22 @@ def test_example_fp8_lighting_indexer():
2121
def test_example_sparse_mla_fwd():
2222
# small shapes for testing
2323
test_sparse_mla_fwd(
24-
S=1024, SKV=2048, H=128, HKV=1, DQK=576, DV=512, topk=256, check_correctness=False)
24+
S=256, SKV=1024, H=64, HKV=1, DQK=576, DV=512, topk=256, check_correctness=False)
2525

2626

2727
@tilelang.testing.requires_cuda
2828
@tilelang.testing.requires_cuda_compute_version_ge(9, 0)
2929
def test_example_sparse_mla_fwd_pipelined():
3030
# small shapes for testing
3131
test_sparse_mla_fwd_pipelined(
32-
S=1024, SKV=2048, H=128, HKV=1, DQK=576, DV=512, topk=256, check_correctness=False)
32+
S=256, SKV=1024, H=64, HKV=1, DQK=576, DV=512, topk=256, check_correctness=False)
3333

3434

3535
@tilelang.testing.requires_cuda
3636
@tilelang.testing.requires_cuda_compute_version_ge(9, 0)
3737
def test_example_sparse_mla_bwd():
3838
test_sparse_mla_bwd(
39-
S=1024, SKV=2048, H=64, HKV=1, DQKV=576, DV=512, topk=256, check_correctness=False)
39+
S=256, SKV=1024, H=64, HKV=1, DQKV=576, DV=512, topk=256, check_correctness=False)
4040

4141

4242
if __name__ == "__main__":

0 commit comments

Comments
 (0)