@@ -48,9 +48,6 @@ struct IVFTest {
4848 std::filesystem::path graph_;
4949 std::filesystem::path queries_f32_;
5050 size_t queries_in_training_set_;
51- // Backend-specific members
52- std::filesystem::path leanvec_data_matrix_;
53- std::filesystem::path leanvec_query_matrix_;
5451 // Runtime values
5552 size_t num_threads_;
5653
@@ -62,9 +59,6 @@ struct IVFTest {
6259 std::filesystem::path graph,
6360 std::filesystem::path queries_f32,
6461 size_t queries_in_training_set,
65- // backend-specific members
66- std::filesystem::path leanvec_data_matrix,
67- std::filesystem::path leanvec_query_matrix,
6862 // Runtime values
6963 size_t num_threads
7064 )
@@ -74,8 +68,6 @@ struct IVFTest {
7468 , graph_{std::move (graph)}
7569 , queries_f32_{std::move (queries_f32)}
7670 , queries_in_training_set_{queries_in_training_set}
77- , leanvec_data_matrix_{std::move (leanvec_data_matrix)}
78- , leanvec_query_matrix_{std::move (leanvec_query_matrix)}
7971 , num_threads_{num_threads} {}
8072
8173 static IVFTest example () {
@@ -86,8 +78,6 @@ struct IVFTest {
8678 " path/to/graph" , // graph
8779 " path/to/queries_f32" , // queries_f32
8880 10000 , // queries_in_training_set
89- " path/to/leanvec_data_matrix" , // LeanVec data matrix
90- " path/to/leanvec_query_matrix" , // LeanVec query matrix
9181 0 , // Num Threads (not-saved)
9282 };
9383 }
@@ -113,9 +103,7 @@ struct IVFTest {
113103 SVS_LIST_SAVE_ (index_config),
114104 SVS_LIST_SAVE_ (graph),
115105 SVS_LIST_SAVE_ (queries_f32),
116- SVS_LIST_SAVE_ (queries_in_training_set),
117- SVS_LIST_SAVE_ (leanvec_data_matrix),
118- SVS_LIST_SAVE_ (leanvec_query_matrix)}
106+ SVS_LIST_SAVE_ (queries_in_training_set)}
119107 );
120108 }
121109
@@ -131,8 +119,6 @@ struct IVFTest {
131119 svsbenchmark::extract_filename (table, " graph" , root),
132120 svsbenchmark::extract_filename (table, " queries_f32" , root),
133121 SVS_LOAD_MEMBER_AT_ (table, queries_in_training_set),
134- svsbenchmark::extract_filename (table, " leanvec_data_matrix" , root),
135- svsbenchmark::extract_filename (table, " leanvec_query_matrix" , root),
136122 num_threads};
137123 }
138124};
0 commit comments