forked from taskflow/taskflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathomp.cpp
More file actions
31 lines (26 loc) · 810 Bytes
/
Copy pathomp.cpp
File metadata and controls
31 lines (26 loc) · 810 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
28
29
30
31
#include "async_task.hpp"
#include <omp.h>
// async_task computation
void async_task_omp(unsigned num_threads, size_t num_tasks) {
omp_set_num_threads(num_threads);
std::atomic<size_t> counter(0);
#pragma omp parallel
{
#pragma omp single
{
for (size_t i=0; i<num_tasks; i++) {
#pragma omp task
func(counter);
}
}
}
if(counter.load(std::memory_order_relaxed) != num_tasks) {
throw std::runtime_error("incorrect result");
}
}
std::chrono::microseconds measure_time_omp(unsigned num_threads, size_t num_tasks) {
auto beg = std::chrono::high_resolution_clock::now();
async_task_omp(num_threads, num_tasks);
auto end = std::chrono::high_resolution_clock::now();
return std::chrono::duration_cast<std::chrono::microseconds>(end - beg);
}