-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomp_section_test.cpp
47 lines (46 loc) · 1.47 KB
/
omp_section_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)
{
omp_set_num_threads(8);
#pragma omp parallel
{
#pragma omp sections
{
#pragma omp section
{
cout << "I am section 1, and the running thread is " << omp_get_thread_num() << endl;
}
#pragma omp section
{
cout << "I am section 2, and the running thread is " << omp_get_thread_num() << endl;
}
#pragma omp section
{
cout << "I am section 3, and the running thread is " << omp_get_thread_num() << endl;
}
#pragma omp section
{
cout << "I am section 4, and the running thread is " << omp_get_thread_num() << endl;
}
#pragma omp section
{
cout << "I am section 5, and the running thread is " << omp_get_thread_num() << endl;
}
#pragma omp section
{
cout << "I am section 6, and the running thread is " << omp_get_thread_num() << endl;
}
#pragma omp section
{
cout << "I am section 7, and the running thread is " << omp_get_thread_num() << endl;
}
#pragma omp section
{
cout << "I am section 8, and the running thread is " << omp_get_thread_num() << endl;
}
}
}
return 0;
}