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 ad767a6 commit 6da82f4Copy full SHA for 6da82f4
mlir/test/Integration/GPU/CUDA/sm90/python/tools/matmulBuilder.py
@@ -151,6 +151,9 @@ def generate_matmul_ws(
151
# Limitaitons for now
152
assert input_type == np.float16
153
assert output_type == np.float32
154
+ assert BLOCK_M == 128
155
+ assert BLOCK_N == 128
156
+ assert BLOCK_K == 64
157
assert M % BLOCK_M == 0
158
assert N % BLOCK_N == 0
159
assert K % BLOCK_K == 0
@@ -665,6 +668,9 @@ def generate_matmul_multistage(
665
668
666
669
667
670
671
672
673
674
675
676
0 commit comments