Skip to content

Commit

Permalink
Reduce default load factor.
Browse files Browse the repository at this point in the history
  • Loading branch information
maawad committed Mar 23, 2024
1 parent fd58966 commit 6b34927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/1cht_example.cu
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ int main(int argc, char** argv) {
auto arguments = std::vector<std::string>(argv, argv + argc);
std::size_t num_keys =
get_arg_value<std::size_t>(arguments, "num-keys").value_or(16ull);
double load_factor = get_arg_value<double>(arguments, "load-factor").value_or(0.9);
double load_factor = get_arg_value<double>(arguments, "load-factor").value_or(0.7);
int device = get_arg_value<int>(arguments, "device").value_or(0);

std::cout << "num-keys: " << num_keys << '\n';
Expand Down

0 comments on commit 6b34927

Please sign in to comment.