Skip to content

Commit c21c92a

Browse files
Apply suggestions from code review
Co-authored-by: Whitney Tsang <[email protected]>
1 parent c316093 commit c21c92a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

benchmarks/triton_kernels_benchmark/gemm_benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def matmul_kernel_with_block_pointers(
117117
num_stages=s, num_warps=4) for s in [2]
118118
],
119119
key=['M', 'N', 'K'],
120-
do_bench=benchmark_suit.make_do_bench_for_autotune(kernel_name='matmul_kernel_with_block_pointers'),
120+
do_bench=benchmark_suit.make_do_bench_for_autotune(kernel_name='matmul_kernel_with_block_pointers_batched'),
121121
)
122122
@triton.jit
123123
def matmul_kernel_with_block_pointers_batched(

benchmarks/triton_kernels_benchmark/gemm_postop_addmatrix_benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def matmul_kernel_with_block_pointers(
110110
num_stages=2, num_warps=4),
111111
],
112112
key=['M', 'N', 'K'],
113-
do_bench=benchmark_suit.make_do_bench_for_autotune(kernel_name='matmul_kernel_with_block_pointers'),
113+
do_bench=benchmark_suit.make_do_bench_for_autotune(kernel_name='matmul_kernel_with_block_pointers_batched'),
114114
)
115115
@triton.jit
116116
def matmul_kernel_with_block_pointers_batched(

benchmarks/triton_kernels_benchmark/gemm_postop_gelu_benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def matmul_kernel_with_block_pointers(
123123
num_stages=2, num_warps=4),
124124
],
125125
key=['M', 'N', 'K'],
126-
do_bench=benchmark_suit.make_do_bench_for_autotune(kernel_name='matmul_kernel_with_block_pointers'),
126+
do_bench=benchmark_suit.make_do_bench_for_autotune(kernel_name='matmul_kernel_with_block_pointers_batched'),
127127
)
128128
@triton.jit
129129
def matmul_kernel_with_block_pointers_batched(

benchmarks/triton_kernels_benchmark/gemm_preop_exp_benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def matmul_kernel_with_block_pointers(
108108
num_stages=2, num_warps=4),
109109
],
110110
key=['M', 'N', 'K'],
111-
do_bench=benchmark_suit.make_do_bench_for_autotune(kernel_name='matmul_kernel_with_block_pointers'),
111+
do_bench=benchmark_suit.make_do_bench_for_autotune(kernel_name='matmul_kernel_with_block_pointers_batched'),
112112
)
113113
@triton.jit
114114
def matmul_kernel_with_block_pointers_batched(

0 commit comments

Comments
 (0)