Skip to content

Commit 6ba8ef9

Browse files
authored
settings: normalize HELION_AUTOTUNER parsing (#1308)
1 parent ab78b89 commit 6ba8ef9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

helion/runtime/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def default_autotuner_fn(
237237
from ..autotuner import cache_classes
238238
from ..autotuner import search_algorithms
239239

240-
autotuner_name = os.environ.get("HELION_AUTOTUNER", "LFBOPatternSearch")
240+
autotuner_name = _env_get_str("HELION_AUTOTUNER", "LFBOPatternSearch")
241241
autotuner_cls = search_algorithms.get(autotuner_name)
242242
if autotuner_cls is None:
243243
raise ValueError(

0 commit comments

Comments
 (0)