We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 123fba5 commit d381011Copy full SHA for d381011
kernel_tuner/strategies/brute_force.py
@@ -9,6 +9,8 @@
9
def tune(searchspace: Searchspace, runner, tuning_options):
10
11
if isinstance(runner, ParallelRunner):
12
+ if tuning_options.strategy_options is None:
13
+ tuning_options.strategy_options = {}
14
tuning_options.strategy_options['check_and_retrieve'] = False
15
cache_manager = CacheManager.remote(tuning_options.cache, tuning_options.cachefile)
16
return runner.run(parameter_space=searchspace.sorted_list(), tuning_options=tuning_options, cache_manager=cache_manager)
0 commit comments