Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Commit

Permalink
fix wrong file name in GetOptionalFilenames() function (#937)
Browse files Browse the repository at this point in the history
Signed-off-by: cqy123456 <[email protected]>
  • Loading branch information
cqy123456 authored Jun 16, 2023
1 parent 1822281 commit ab6b716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index/diskann/diskann.cc
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ GetOptionalFilenames(const std::string& prefix) {
auto disk_index_filename = diskann::get_disk_index_filename(prefix);
filenames.push_back(diskann::get_disk_index_centroids_filename(disk_index_filename));
filenames.push_back(diskann::get_disk_index_medoids_filename(disk_index_filename));
filenames.push_back(diskann::get_cached_nodes_file(disk_index_filename));
filenames.push_back(diskann::get_cached_nodes_file(prefix));
return filenames;
}

Expand Down

0 comments on commit ab6b716

Please sign in to comment.