Skip to content

Commit

Permalink
Fixing small bug in raft-ann-bench (#2041)
Browse files Browse the repository at this point in the history
Authors:
  - Corey J. Nolet (https://github.com/cjnolet)

Approvers:
  - Divye Gala (https://github.com/divyegala)

URL: #2041
  • Loading branch information
cjnolet authored Dec 6, 2023
1 parent 42e9f15 commit c3a9c78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/raft-ann-bench/src/raft-ann-bench/run/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,8 +574,8 @@ def add_algo_group(group_list):
index["search_params"].append(search_dict)
executables_to_run[executable]["index"].append(index)

if len(index["search_params"]) == 0:
print("No search parameters were added to configuration")
if len(index["search_params"]) == 0:
print("No search parameters were added to configuration")

run_build_and_search(
conf_file,
Expand Down

0 comments on commit c3a9c78

Please sign in to comment.