Skip to content

Commit

Permalink
Set num_stage to 2 from 0 in tune_gemm (#658)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexAUT authored Nov 6, 2024
1 parent 7c07f4a commit 086312b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/perf-kernels/tools/tune_gemm/tune_gemm.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ def get_full_tuning_space():
split_k_range = [1, 2, 4, 5, 6, 8, 10, 12, 16, 18, 24]
num_warps_range = [1, 2, 4, 8]
group_m_range = [1, 2, 4, 8, 16, 32]
# For now we see better perf with num_stages=0 for all gemm configs we care
# For now we see better perf with num_stages=2 for all gemm configs we care
# But keep this explicit so that we do not forget we may need to set it to
# other values in the future
num_stage_range = [0]
num_stage_range = [2]
waves_per_eu_range = [0]
matrix_instr_nonkdim_range = [16, 32]
kpack_range = [1, 2]
Expand Down

0 comments on commit 086312b

Please sign in to comment.