forked from taskflow/taskflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtaskflow.cpp
More file actions
29 lines (20 loc) · 803 Bytes
/
Copy pathtaskflow.cpp
File metadata and controls
29 lines (20 loc) · 803 Bytes
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
#include <taskflow/taskflow.hpp>
#include "async_task.hpp"
// async_task computing
void async_task_taskflow(unsigned num_threads, size_t num_tasks) {
static tf::Executor executor(num_threads);
std::atomic<size_t> counter(0);
for(size_t i=0; i<num_tasks; i++) {
executor.silent_async([&] { func(counter); });
}
executor.wait_for_all();
if(counter.load(std::memory_order_relaxed) != num_tasks) {
throw std::runtime_error("incorrect result");
}
}
std::chrono::microseconds measure_time_taskflow(unsigned num_threads, size_t num_tasks) {
auto beg = std::chrono::high_resolution_clock::now();
async_task_taskflow(num_threads, num_tasks);
auto end = std::chrono::high_resolution_clock::now();
return std::chrono::duration_cast<std::chrono::microseconds>(end - beg);
}