Skip to content

Commit

Permalink
revert benchmark API call
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwendt committed Oct 11, 2024
1 parent 660641e commit 186477e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/benchmarks/text/minhash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ static void bench_minhash(nvbench::state& state)
state.add_global_memory_writes<nvbench::int32_t>(num_rows); // output are hashes

state.exec(nvbench::exec_tag::sync, [&](nvbench::launch& launch) {
auto result = base64 ? nvtext::minhash64_permuted(input, seeds.view(), seeds.view(), hash_width)
: nvtext::minhash_permuted(input, seeds.view(), seeds.view(), hash_width);
auto result = base64 ? nvtext::minhash64(input, seeds.view(), hash_width)
: nvtext::minhash(input, seeds.view(), hash_width);
});
}

Expand Down

0 comments on commit 186477e

Please sign in to comment.