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 62a736c commit 2d7c237Copy full SHA for 2d7c237
helion/runtime/kernel.py
@@ -580,6 +580,9 @@ def _implicit_config(self) -> Config | None:
580
configs = self.kernel.configs
581
if self._config is not None:
582
return self._config
583
+ if self.settings.force_autotune:
584
+ # If force autotune is enabled, do not pick an implicit config
585
+ return None
586
if len(configs) == 1:
587
return configs[0]
588
if len(configs) == 0 and self.kernel.settings.autotune_effort == "none":
0 commit comments