Skip to content

Commit

Permalink
num_stages=0 becomes num_stages=2
Browse files Browse the repository at this point in the history
Differential Revision: D65955484
  • Loading branch information
nmacchioni authored and facebook-github-bot committed Nov 14, 2024
1 parent ebb0b05 commit 663c64b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generative_recommenders/ops/triton/triton_addmm.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def get_mm_configs() -> List[triton.Config]:
waves_per_eu_range = [0]
kpack_range = [1, 2]
num_warps_range = [4, 8]
num_stage_range = [0]
num_stage_range = [2]
else:
block_m_range = [256]
block_n_range = [256]
Expand All @@ -50,7 +50,7 @@ def get_mm_configs() -> List[triton.Config]:
waves_per_eu_range = [0]
kpack_range = [2]
num_warps_range = [8]
num_stage_range = [0]
num_stage_range = [2]

return [
triton.Config(
Expand Down

0 comments on commit 663c64b

Please sign in to comment.