forked from taskflow/taskflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
72 lines (54 loc) · 1.83 KB
/
main.cpp
File metadata and controls
72 lines (54 loc) · 1.83 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#include "binary_tree.hpp"
#include <CLI11.hpp>
void binary_tree(
const std::string& model,
const size_t num_layers,
const unsigned num_threads,
const unsigned num_rounds
) {
std::cout << std::setw(12) << "size"
<< std::setw(12) << "runtime"
<< std::endl;
for(size_t i=1; i<=num_layers; ++i) {
double runtime {0.0};
for(unsigned j=0; j<num_rounds; ++j) {
if(model == "tf") {
runtime += measure_time_taskflow(i, num_threads).count();
}
else if(model == "tbb") {
runtime += measure_time_tbb(i, num_threads).count();
}
else if(model == "omp") {
runtime += measure_time_omp(i, num_threads).count();
}
else assert(false);
}
std::cout << std::setw(12) << (1 << i)
<< std::setw(12) << runtime / num_rounds / 1e3
<< std::endl;
}
}
int main(int argc, char* argv[]) {
CLI::App app{"BinaryTree"};
unsigned num_threads {1};
app.add_option("-t,--num_threads", num_threads, "number of threads (default=1)");
unsigned num_rounds {1};
app.add_option("-r,--num_rounds", num_rounds, "number of rounds (default=1)");
size_t num_layers {25};
app.add_option("-l,--num_layers", num_layers, "number of layers (default=25)");
std::string model = "tf";
app.add_option("-m,--model", model, "model name tbb|omp|tf (default=tf)")
->check([] (const std::string& m) {
if(m != "tbb" && m != "tf" && m != "omp") {
return "model name should be \"tbb\", \"omp\", or \"tf\"";
}
return "";
});
CLI11_PARSE(app, argc, argv);
std::cout << "model=" << model << ' '
<< "num_threads=" << num_threads << ' '
<< "num_rounds=" << num_rounds << ' '
<< std::endl;
binary_tree(model, num_layers, num_threads, num_rounds);
return 0;
}