Skip to content

Commit 89370ef

Browse files
committed
Add asserts 128x128x64
1 parent 861fe27 commit 89370ef

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

mlir/test/Integration/GPU/CUDA/sm90/python/tools/matmulBuilder.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,9 @@ def generate_matmul_ws(
151151
# Limitaitons for now
152152
assert input_type == np.float16
153153
assert output_type == np.float32
154+
assert BLOCK_M == 128
155+
assert BLOCK_N == 128
156+
assert BLOCK_K == 64
154157
assert M % BLOCK_M == 0
155158
assert N % BLOCK_N == 0
156159
assert K % BLOCK_K == 0
@@ -665,6 +668,9 @@ def generate_matmul_multistage(
665668
# Limitaitons for now
666669
assert input_type == np.float16
667670
assert output_type == np.float32
671+
assert BLOCK_M == 128
672+
assert BLOCK_N == 128
673+
assert BLOCK_K == 64
668674
assert M % BLOCK_M == 0
669675
assert N % BLOCK_N == 0
670676
assert K % BLOCK_K == 0

0 commit comments

Comments
 (0)