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 08fb58e commit 6e94e01Copy full SHA for 6e94e01
kernel_tuner/interface.py
@@ -621,7 +621,7 @@ def tune_kernel(
621
if strategy in strategy_map:
622
strategy = strategy_map[strategy]
623
else:
624
- raise ValueError("Strategy %s not recognized" % strategy)
+ raise ValueError(f"Unkown strategy {strategy}, must be one of: {', '.join(list(strategy_map.keys()))}")
625
626
# make strategy_options into an Options object
627
if tuning_options.strategy_options:
0 commit comments