Skip to content

Commit

Permalink
Moved special 'tuner' key to strategy to avoid invalidating caches
Browse files Browse the repository at this point in the history
  • Loading branch information
fjwillemsen committed Apr 23, 2024
1 parent 4c869df commit 019c541
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ There are two entry points defined: `autotuning_experiment` and `autotuning_visu

### Input files
To get started, all you need is an experiments file. This is a `json` file that describes the details of your comparison: which algorithms to use, which programs to tune on which devices, the graphs to output and so on.
You can find the API and an example `experiments.json` in the [documentation]().
You can find the API and an example `experiments.json` in the [documentation](https://autotuningassociation.github.io/autotuning_methodology/modules.html).

### File references
As we are dealing with input and output files, file references matter.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
"compare_split_times": true
},
"strategy_defaults": {
"tuner": "kerneltuner",
"repeats": 10,
"minimum_number_of_evaluations": 20,
"stochastic": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
"strategies": [
{
"name": "random_sample_100_iter",
"tuner": "kerneltuner",
"strategy": "random_sample",
"display_name": "Random sampling 100 iters",
"repeats": 5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
"compare_split_times": false
},
"strategy_defaults": {
"tuner": "kerneltuner",
"repeats": 100,
"minimum_number_of_evaluations": 20,
"stochastic": true,
Expand Down

0 comments on commit 019c541

Please sign in to comment.