Skip to content

Commit 2e85960

Browse files
authored
Fix bug to renable reduction tuning (PART 2)
1 parent 765ede7 commit 2e85960

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

torch/_inductor/runtime/triton_heuristics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2704,7 +2704,7 @@ def outer_config_opt():
27042704

27052705
result_configs = []
27062706

2707-
if not (max_autotune or "y" in size_hints):
2707+
if not (max_autotune_enabled or "y" in size_hints):
27082708
if reduction_hint == ReductionHint.INNER:
27092709
result_configs = configs + [contiguous_config]
27102710
elif reduction_hint == ReductionHint.OUTER:

0 commit comments

Comments
 (0)