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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86 | // Copyright 2021 Jeisson Hidalgo <jeisson.hidalgo@ucr.ac.cr> CC-BY 4.0
#include <omp.h>
#include <iostream>
#include <vector>
void print_mapping(const char* type, const std::vector<int>& mapping);
int main(int argc, char* argv[]) {
int thread_count = omp_get_max_threads();
if (argc >= 2) {
thread_count = atoi(argv[1]);
}
int iteration_count = thread_count;
if (argc >= 3) {
iteration_count = atoi(argv[2]);
}
int block_size = 0;
if (argc >= 4) {
block_size = atoi(argv[3]);
}
std::vector<int> mapping(iteration_count);
#pragma omp parallel num_threads(thread_count) \
default(none) shared(iteration_count, mapping, block_size)
{
if (block_size == 0) {
#pragma omp for schedule(static)
for (int iteration = 0; iteration < iteration_count; ++iteration) {
mapping[iteration] = omp_get_thread_num();
}
#pragma omp single
print_mapping("static ", mapping);
#pragma omp for schedule(dynamic)
for (int iteration = 0; iteration < iteration_count; ++iteration) {
mapping[iteration] = omp_get_thread_num();
}
#pragma omp single
print_mapping("dynamic ", mapping);
#pragma omp for schedule(guided)
for (int iteration = 0; iteration < iteration_count; ++iteration) {
mapping[iteration] = omp_get_thread_num();
}
#pragma omp single
print_mapping("guided ", mapping);
} else {
#pragma omp for schedule(static, block_size)
for (int iteration = 0; iteration < iteration_count; ++iteration) {
mapping[iteration] = omp_get_thread_num();
}
#pragma omp single
print_mapping("static,N ", mapping);
#pragma omp for schedule(dynamic, block_size)
for (int iteration = 0; iteration < iteration_count; ++iteration) {
mapping[iteration] = omp_get_thread_num();
}
#pragma omp single
print_mapping("dynamic,N ", mapping);
#pragma omp for schedule(guided, block_size)
for (int iteration = 0; iteration < iteration_count; ++iteration) {
mapping[iteration] = omp_get_thread_num();
}
#pragma omp single
print_mapping("guided,N ", mapping);
}
}
}
void print_mapping(const char* type, const std::vector<int>& mapping) {
std::cout << type;
for (size_t index = 0; index < mapping.size(); ++index) {
std::cout << mapping[index] << (index == mapping.size() - 1 ? '\n' : ' ');
}
}
|