This repository was archived by the owner on Apr 28, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +0
-11
lines changed
tensor_comprehensions/pybinds Expand file tree Collapse file tree 3 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ DECLARE_uint32(tuner_gen_number_elites);
47
47
DECLARE_uint32 (tuner_threads);
48
48
DECLARE_string (tuner_gpus);
49
49
DECLARE_bool (tuner_print_best);
50
- DECLARE_string (tuner_proto);
51
50
DECLARE_string (tuner_rng_restore);
52
51
DECLARE_bool (tuner_gen_restore_from_proto);
53
52
DECLARE_uint32 (tuner_gen_restore_number);
Original file line number Diff line number Diff line change @@ -84,11 +84,6 @@ DEFINE_bool(
84
84
tuner_print_best,
85
85
false ,
86
86
" Print to INFO the best tuning options after each generation" );
87
- DEFINE_string (
88
- tuner_proto,
89
- " /tmp/tuner.txt" ,
90
- " Filename to load and store proto cache "
91
- " (TODO: Hardcoded default a security liability?)" );
92
87
DEFINE_string (tuner_rng_restore, " " , " Rng state to restore" );
93
88
DEFINE_bool (
94
89
tuner_gen_restore_from_proto,
Original file line number Diff line number Diff line change @@ -85,11 +85,6 @@ PYBIND11_MODULE(autotuner, m) {
85
85
[](tc::autotune::GeneticAutotunerATen& instance, std::string& gpus) {
86
86
tc::FLAGS_tuner_gpus = gpus;
87
87
})
88
- .def (
89
- " proto" ,
90
- [](tc::autotune::GeneticAutotunerATen& instance, std::string& proto) {
91
- tc::FLAGS_tuner_proto = proto;
92
- })
93
88
.def (
94
89
" restore_from_proto" ,
95
90
[](tc::autotune::GeneticAutotunerATen& instance,
You can’t perform that action at this time.
0 commit comments