Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
43082a5
data_export
tarang-jain Apr 30, 2025
fae7fe1
Merge branch 'branch-25.06' of https://github.com/rapidsai/cuvs into …
tarang-jain Apr 30, 2025
91d8987
Merge branch 'branch-25.06' into cuvs-bench
tarang-jain May 2, 2025
124be90
Merge branch 'branch-25.06' into cuvs-bench
cjnolet May 7, 2025
9861233
Merge branch 'branch-25.06' into cuvs-bench
tarang-jain May 13, 2025
0e3a151
Merge branch 'branch-25.06' into cuvs-bench
tarang-jain May 14, 2025
b0e5f1d
Merge branch 'branch-25.06' into cuvs-bench
tarang-jain May 19, 2025
544d987
Merge branch 'branch-25.06' into cuvs-bench
tarang-jain May 21, 2025
2f7da01
Empty-Commit
tarang-jain May 22, 2025
3048d37
Merge branch 'cuvs-bench' of https://github.com/tarang-jain/cuvs into…
tarang-jain May 22, 2025
9e73c62
Merge branch 'branch-25.06' into cuvs-bench
tarang-jain May 27, 2025
6c96d84
dbg
tarang-jain May 28, 2025
6315443
Merge branch 'branch-25.08' of https://github.com/rapidsai/cuvs into …
tarang-jain May 28, 2025
0550679
Merge branch 'branch-25.08' into cuvs-bench
cjnolet Jun 11, 2025
dcf99f5
Merge branch 'branch-25.08' into cuvs-bench
tarang-jain Jun 12, 2025
2e1a191
Merge branch 'branch-25.08' into cuvs-bench
tarang-jain Jun 16, 2025
68cbfa4
Merge branch 'branch-25.08' of https://github.com/rapidsai/cuvs into …
tarang-jain Jun 16, 2025
be971b7
fix test
tarang-jain Jun 16, 2025
d96817d
Merge branch 'cuvs-bench' of https://github.com/tarang-jain/cuvs into…
tarang-jain Jun 16, 2025
2c35dc8
rm log statement
tarang-jain Jun 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions python/cuvs_bench/cuvs_bench/run/data_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,12 +217,16 @@ def convert_json_to_csv_search(dataset, dataset_path):
write["build time"] = None
write["build threads"] = None
write["build cpu_time"] = None
write["build GPU"] = None

for col_idx in range(6, len(build_df.columns)):
start_idx = 5
if "GPU" in build_df.columns:
start_idx = 6
write["build GPU"] = None
for col_idx in range(start_idx, len(build_df.columns)):
col_name = build_df.columns[col_idx]
write[col_name] = None

if col_name == "num_threads":
write["build_num_threads"] = None
for s_index, search_row in write.iterrows():
for b_index, build_row in build_df.iterrows():
if search_row["index_name"] == build_row["index_name"]:
Expand Down
2 changes: 1 addition & 1 deletion python/cuvs_bench/cuvs_bench/tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def test_run_command_creates_results(temp_datasets_dir: Path):
"build time",
"build threads",
"build cpu_time",
"build GPU",
"ef_construction",
"graph_degree",
"intermediate_graph_degree",
"label",
Expand Down