forked from simongog/sdsl-lite
-
Notifications
You must be signed in to change notification settings - Fork 1
/
hugepages.cpp
50 lines (41 loc) · 1.28 KB
/
hugepages.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
48
49
50
#include <sdsl/suffix_trees.hpp>
#include <iostream>
using namespace sdsl;
using namespace std;
using namespace std::chrono;
using timer = std::chrono::high_resolution_clock;
template<class tCsa>
void do_something(const tCsa& csa)
{
uint64_t sum=0;
auto start = timer::now();
for (size_t i=0; i<csa.size() and i<10000000; ++i) {
sum+=csa.psi(i);
}
auto stop = timer::now();
cout << "runtime in s: " << duration_cast<seconds>(stop-start).count() << endl;
cout <<"sum="<<sum<<endl;
}
int main(int argc, char** argv)
{
if (argc < 2) {
cout << "Usage: " << argv[0] << " file" << endl;
cout << " (1) Creates a CST for a byte file. " << endl;
cout << " (2) Runs a benchmark with enabled/disabled 1GB=hugepages." << endl;
return 1;
}
if (argc==3) {
memory_manager::use_hugepages(500*1024*1024);
}
memory_monitor::start();
csa_wt<> csa;
auto start = timer::now();
construct(csa, argv[1], 1);
auto stop = timer::now();
cout << "construction in s: " << duration_cast<seconds>(stop-start).count() << endl;
do_something(csa); // before it is mapped
memory_monitor::stop();
std::ofstream ofs("cst-construction.json");
memory_monitor::write_memory_log<JSON>(ofs);
ofs.close();
}