diff --git a/helion/runtime/kernel.py b/helion/runtime/kernel.py index 7bfd38d2d..46157500d 100644 --- a/helion/runtime/kernel.py +++ b/helion/runtime/kernel.py @@ -580,6 +580,9 @@ def _implicit_config(self) -> Config | None: configs = self.kernel.configs if self._config is not None: return self._config + if self.settings.force_autotune: + # If force autotune is enabled, do not pick an implicit config + return None if len(configs) == 1: return configs[0] if len(configs) == 0 and self.kernel.settings.autotune_effort == "none":