forked from cmuparlay/parlaylib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhash_map.cpp
47 lines (39 loc) · 1.23 KB
/
hash_map.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include <iostream>
#include <string>
#include <parlay/primitives.h>
#include <parlay/random.h>
#include <parlay/internal/get_time.h>
#include "hash_map.h"
// **************************************************************
// Driver
// **************************************************************
int main(int argc, char* argv[]) {
auto usage = "hash_map <n>";
if (argc != 2) std::cout << usage << std::endl;
else {
long n;
try { n = std::stol(argv[1]); }
catch (...) { std::cout << usage << std::endl; return 1; }
using p = std::pair<long,long>;
parlay::random_generator gen(0);
std::uniform_int_distribution<long> dis(0,n);
// generate n random keys
auto pairs = parlay::tabulate(n, [&] (long i) {
auto r = gen[i];
return p{dis(r),i};
});
parlay::sequence<long> keys;
parlay::internal::timer t("Time");
for (int i=0; i < 5; i++) {
hash_map<long,long> m(n);
t.next("hash_map : construct");
parlay::for_each(pairs, [&] (auto p) {
m.insert(p.first, p.second);});
t.next("hash_map : insert");
parlay::for_each(pairs, [&] (auto p) {
m.find(p.second);});
t.next("hash_map : find");
}
std::cout << "number of unique keys: " << keys.size() << std::endl;
}
}