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 f791da0 commit 5dd2ae3Copy full SHA for 5dd2ae3
benchmarks/run.py
@@ -626,7 +626,9 @@ def helion_method(
626
# Force autotuning unless HELION_USE_DEFAULT_CONFIG=1 is set
627
# This ensures we run autotuning even if the kernel has pre-specified configs
628
if os.environ.get("HELION_USE_DEFAULT_CONFIG", "0") != "1":
629
- attr.settings.force_autotune = True
+ # Only force full autotuning if no configs are provided
630
+ if not attr.configs:
631
+ attr.settings.force_autotune = True
632
attr.settings.static_shapes = True
633
634
if isinstance(kfunc, Kernel):
0 commit comments