Skip to content

Commit 3f5c597

Browse files
[GEMM] Fix typo for streamk 3072x4096x3072 case
Signed-off-by: Whitney Tsang <[email protected]>
1 parent 3fcbdc8 commit 3f5c597

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmarks/triton_kernels_benchmark/gemm_benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ def benchmark(B, M, N, K, provider):
314314
name = f'gemm_shape_{B}_{M}_{K}_{N}'
315315
# FIXME: Use gemm_streamk_benchmark.py when Triton streamk can get
316316
# better performance.
317-
if (B, M, N, K) == (1, 3072, 4096, 3072):
317+
if (B, M, K, N) == (1, 3072, 4096, 3072):
318318
name = 'gemm_streamk_shape_3072_4096_3072'
319319
func = getattr(xetla_kernel, name)
320320
xetla_fn = lambda: func(a, b, c, acc, cnt)

0 commit comments

Comments
 (0)