1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 | // Copyright 2021 Jeisson Hidalgo <jeisson.hidalgo@ucr.ac.cr> CC-BY 4.0
#include <omp.h>
#include <iostream>
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]);
}
#pragma omp parallel for num_threads(thread_count) \
default(none) shared(iteration_count, std::cout)
for (int iteration = 0; iteration < iteration_count; ++iteration) {
#pragma omp critical(stdout)
std::cout << omp_get_thread_num() << '/' << omp_get_num_threads()
<< ": iteration " << iteration << '/' << iteration_count << std::endl;
}
}
|