Skip to content

Commit

Permalink
match benchmark to curator parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwendt committed Oct 10, 2024
1 parent 121419c commit f747163
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cpp/benchmarks/text/minhash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ static void bench_minhash(nvbench::state& state)

NVBENCH_BENCH(bench_minhash)
.set_name("minhash")
.add_int64_axis("num_rows", {16364, 65456})
.add_int64_axis("row_width", {256, 512, 1024})
.add_int64_axis("hash_width", {5, 10, 20})
.add_int64_axis("seed_count", {2, 26, 260})
.add_int64_axis("num_rows", {15000, 30000, 60000})
.add_int64_axis("row_width", {6000, 28000, 50000})
.add_int64_axis("hash_width", {12, 24})
.add_int64_axis("seed_count", {26, 260})
.add_int64_axis("hash_type", {32, 64});

0 comments on commit f747163

Please sign in to comment.