forked from taskflow/taskflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtbb.cpp
More file actions
54 lines (42 loc) · 1.29 KB
/
tbb.cpp
File metadata and controls
54 lines (42 loc) · 1.29 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
#include "binary_tree.hpp"
#include <tbb/task_scheduler_init.h>
#include <tbb/flow_graph.h>
// binary_tree_tbb
void binary_tree_tbb(size_t num_layers, unsigned num_threads) {
using namespace tbb;
using namespace tbb::flow;
tbb::task_scheduler_init init(num_threads);
std::atomic<size_t> counter {0};
graph g;
std::vector<continue_node<continue_msg>*> tasks(1 << num_layers);
for(unsigned i=1; i<tasks.size(); i++) {
tasks[i] = new continue_node<continue_msg>(g,
[&]( const continue_msg& ) {
counter.fetch_add(1, std::memory_order_relaxed);
}
);
}
for(unsigned i=1; i<tasks.size(); i++) {
unsigned l = i << 1;
unsigned r = l + 1;
if(l < tasks.size() && r < tasks.size()) {
make_edge(*tasks[i], *tasks[l]);
make_edge(*tasks[i], *tasks[r]);
}
}
tasks[1]->try_put(continue_msg());
g.wait_for_all();
for(auto& task : tasks) {
delete task;
}
assert(counter + 1 == tasks.size());
}
std::chrono::microseconds measure_time_tbb(
size_t num_layers,
unsigned num_threads
) {
auto beg = std::chrono::high_resolution_clock::now();
binary_tree_tbb(num_layers, num_threads);
auto end = std::chrono::high_resolution_clock::now();
return std::chrono::duration_cast<std::chrono::microseconds>(end - beg);
}