diff --git a/faiss/perf_tests/bench_scalar_quantizer_accuracy.cpp b/faiss/perf_tests/bench_scalar_quantizer_accuracy.cpp index 7d8e70f958..4b7ef48a53 100644 --- a/faiss/perf_tests/bench_scalar_quantizer_accuracy.cpp +++ b/faiss/perf_tests/bench_scalar_quantizer_accuracy.cpp @@ -27,7 +27,6 @@ static void bench_reconstruction_error( ScalarQuantizer::QuantizerType type, int d, int n) { - state.SetLabel(faiss::get_compile_options()); std::vector x(d * n); float_rand(x.data(), d * n, 12345); @@ -64,7 +63,6 @@ static void bench_reconstruction_error( state.counters["ndiff_for_idempotence"] = ndiff; state.counters["code_size_two"] = codes.size(); - state.SetLabel(faiss::get_compile_options()); } int main(int argc, char** argv) { diff --git a/faiss/perf_tests/bench_scalar_quantizer_decode.cpp b/faiss/perf_tests/bench_scalar_quantizer_decode.cpp index 6cf3713a9b..c2fdbf4294 100644 --- a/faiss/perf_tests/bench_scalar_quantizer_decode.cpp +++ b/faiss/perf_tests/bench_scalar_quantizer_decode.cpp @@ -27,7 +27,6 @@ static void bench_decode( ScalarQuantizer::QuantizerType type, int d, int n) { - state.SetLabel(faiss::get_compile_options()); std::vector x(d * n); float_rand(x.data(), d * n, 12345); diff --git a/faiss/perf_tests/bench_scalar_quantizer_distance.cpp b/faiss/perf_tests/bench_scalar_quantizer_distance.cpp index b621ed39b3..81a92d7c7b 100644 --- a/faiss/perf_tests/bench_scalar_quantizer_distance.cpp +++ b/faiss/perf_tests/bench_scalar_quantizer_distance.cpp @@ -27,7 +27,6 @@ static void bench_distance( ScalarQuantizer::QuantizerType type, int n, int d) { - state.SetLabel(faiss::get_compile_options()); std::vector x(d * n); float_rand(x.data(), d * n, 12345); @@ -46,8 +45,6 @@ static void bench_distance( std::vector codes(code_size * n); sq.compute_codes(x.data(), codes.data(), n); - state.SetLabel(faiss::get_compile_options()); - std::unique_ptr dc( sq.get_distance_computer()); dc->codes = codes.data(); diff --git a/faiss/perf_tests/bench_scalar_quantizer_encode.cpp b/faiss/perf_tests/bench_scalar_quantizer_encode.cpp index 3f745ada9a..c35ecbd58c 100644 --- a/faiss/perf_tests/bench_scalar_quantizer_encode.cpp +++ b/faiss/perf_tests/bench_scalar_quantizer_encode.cpp @@ -28,7 +28,6 @@ static void bench_encode( ScalarQuantizer::QuantizerType type, int d, int n) { - state.SetLabel(faiss::get_compile_options()); std::vector x(d * n); float_rand(x.data(), d * n, 12345);