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 13d0455 commit 821a208Copy full SHA for 821a208
torch/_inductor/runtime/triton_heuristics.py
@@ -2474,7 +2474,10 @@ def _reduction_configs(
2474
rnumel = get_total_reduction_numel(size_hints)
2475
2476
# Is max autotune enabled
2477
- max_autotune = inductor_meta.get("max_autotune") or inductor_meta.get("max_autotune_pointwise")
+ max_autotune_enabled = not disable_pointwise_autotuning(inductor_meta) or (
2478
+ inductor_meta.get("max_autotune")
2479
+ or inductor_meta.get("max_autotune_pointwise")
2480
+ )
2481
2482
register_intensive = False
2483
MAX_R0_BLOCK = 2048
0 commit comments