Skip to content

Commit ddf1c8f

Browse files
authored
cuvs-bench Fixes (#654)
- Simple bug fix for seg fault while running cuvs-bench - Pin the correct FAISS version for cuvs-bench Authors: - Tarang Jain (https://github.com/tarang-jain) Approvers: - Corey J. Nolet (https://github.com/cjnolet) - Artem M. Chirkin (https://github.com/achirkin) URL: #654
1 parent 45703bf commit ddf1c8f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

cpp/bench/ann/src/common/benchmark.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ void dispatch_benchmark(std::string cmdline,
571571
}
572572
}
573573
std::swap(more_indices, indices); // update the config in case algorithms need to access it
574-
register_build<T>(dataset, more_indices, force_overwrite, no_lap_sync);
574+
register_build<T>(dataset, indices, force_overwrite, no_lap_sync);
575575
} else if (search_mode) {
576576
if (file_exists(query_file)) {
577577
log_info("Using the query file '%s'", query_file.c_str());
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"packages" : {
33
"faiss" : {
4-
"version": "1.7.4",
4+
"version": "1.10.0",
55
"git_url": "https://github.com/facebookresearch/faiss.git",
6-
"git_tag": "main"
6+
"git_tag": "v1.10.0"
77
}
88
}
99
}

0 commit comments

Comments
 (0)