-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomp_synchronization_test.cpp
47 lines (42 loc) · 1.02 KB
/
omp_synchronization_test.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
#include <iostream>
#include <omp.h>
using namespace std;
int main(void)
{
int sum = 0;
omp_lock_t* p_lock;
omp_init_lock(p_lock);
omp_set_num_threads(8);
#pragma omp parallel
{
// #pragma omp single
#pragma omp master
{
cout << "Execute once, thread is " << omp_get_thread_num() << endl;
}
// Two ways to protect shared variables
// #pragma omp critical
// {
// for (size_t i = 0; i < 800; i++)
// {
// sum++;
// }
// }
for (size_t i = 0; i < 800; i++)
{
#pragma omp atomic
sum++;
// omp_set_lock(p_lock);
// sum++;
// omp_unset_lock(p_lock);
if (i == 400)
{
#pragma omp barrier
cout << "thread " << omp_get_thread_num() << " barrier here" << endl;
}
}
}
cout << sum << endl;
omp_destroy_lock(p_lock);
return 0;
}