We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d09906a commit 765ede7Copy full SHA for 765ede7
torch/_inductor/runtime/triton_heuristics.py
@@ -2564,7 +2564,10 @@ def _reduction_configs(
2564
rnumel = get_total_reduction_numel(size_hints)
2565
2566
# Is max autotune enabled
2567
- max_autotune = inductor_meta.get("max_autotune") or inductor_meta.get("max_autotune_pointwise")
+ max_autotune_enabled = not disable_pointwise_autotuning(inductor_meta) or (
2568
+ inductor_meta.get("max_autotune")
2569
+ or inductor_meta.get("max_autotune_pointwise")
2570
+ )
2571
2572
register_intensive = False
2573
MAX_R0_BLOCK = 2048
0 commit comments