Skip to content

Commit

Permalink
Update benchmark_hashtable.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
abxh authored Apr 15, 2024
1 parent 1eb923c commit 983ea62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests_benchmark/benchmark_hashtable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// https://github.com/tsoding/rust-hash-table/blob/main/src/main.rs
// https://cplusplus.com/reference/unordered_map/unordered_map/find/

#include <cstdint> // uint64_t
#include <cstdlib> // rand, srand
#include <cstdint>
#include <cstdlib>
#include <ctime>
#include <iostream>
#include <unordered_map>
Expand All @@ -12,7 +12,7 @@ extern "C" {
#define PREFIX uint_ht
#define KEY_TYPE uint64_t
#define VALUE_TYPE uint64_t
#include "fixed-containers/K_to_V_hashtable.h" // uint_ht
#include "fixed-containers/K_to_V_hashtable.h"

void benchmark_uint_ht(size_t n, unsigned int seed) {
uint_ht_type* ht_p;
Expand Down

0 comments on commit 983ea62

Please sign in to comment.