Skip to content

Commit dd92fa1

Browse files
committed
Update
1 parent 5bfe5cb commit dd92fa1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

benchmarks/triton_kernels_benchmark/gemm_benchmark.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,15 +100,15 @@ def matmul_kernel_with_block_pointers(
100100
num_stages=s, num_warps=32) for s in [2]
101101
] + [
102102
triton.Config(
103-
{'BLOCK_SIZE_M': 128, 'BLOCK_SIZE_N': 1024, 'BLOCK_SIZE_K': 16, 'GROUP_SIZE_M': 1, 'grf_mode': 'large'},
104-
num_stages=s, num_warps=32) for s in [2]
103+
{'BLOCK_SIZE_M': 128, 'BLOCK_SIZE_N': 1024, 'BLOCK_SIZE_K': 16, 'GROUP_SIZE_M': 4, 'grf_mode': 'large'},
104+
num_stages=s, num_warps=32) for s in [2, 3]
105105
] + [
106106
triton.Config(
107107
{'BLOCK_SIZE_M': 64, 'BLOCK_SIZE_N': 128, 'BLOCK_SIZE_K': 32, 'GROUP_SIZE_M': 4, 'grf_mode': 'large'},
108108
num_stages=s, num_warps=32) for s in [2]
109109
] + [
110110
triton.Config(
111-
{'BLOCK_SIZE_M': 16, 'BLOCK_SIZE_N': 1024, 'BLOCK_SIZE_K': 64, 'GROUP_SIZE_M': 32, 'grf_mode': 'large'},
111+
{'BLOCK_SIZE_M': 8, 'BLOCK_SIZE_N': 1024, 'BLOCK_SIZE_K': 64, 'GROUP_SIZE_M': 2, 'grf_mode': 'large'},
112112
num_stages=s, num_warps=32) for s in [2, 3]
113113
] + [
114114
triton.Config(

0 commit comments

Comments
 (0)