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 | // Copyright 2021 Jeisson Hidalgo <jeisson.hidalgo@ucr.ac.cr> CC-BY 4.0
#include <mpi.h>
#include <omp.h>
#include <algorithm>
#include <cstdlib>
#include <iostream>
int calculate_start(int rank, int end, int workers, int begin);
int calculate_finish(int rank, int end, int workers, int begin);
int main(int argc, char* argv[]) {
if (MPI_Init(&argc, &argv) == MPI_SUCCESS) {
int process_number = -1; // rank
MPI_Comm_rank(MPI_COMM_WORLD, &process_number);
int process_count = -1;
MPI_Comm_size(MPI_COMM_WORLD, &process_count);
char process_hostname[MPI_MAX_PROCESSOR_NAME];
int hostname_length = -1;
MPI_Get_processor_name(process_hostname, &hostname_length);
if (argc == 3) {
const int overall_start = atoi(argv[1]);
const int overall_finish = atoi(argv[2]);
const int process_start = calculate_start(process_number, overall_finish
, process_count, overall_start);
const int process_finish = calculate_finish(process_number, overall_finish
, process_count, overall_start);
const int process_size = process_finish - process_start;
std::cout << process_hostname << ':' << process_number << ": range ["
<< process_start << ", " << process_finish << "[ size " << process_size
<< std::endl;
#pragma omp parallel default(none) shared(std::cout, process_hostname) \
shared(process_number, process_start, process_finish)
{ // NOLINT(whitespace/braces)
int thread_start = -1;
int thread_finish = -1;
#pragma omp for schedule(static)
for (int index = process_start; index < process_finish; ++index) {
if (thread_start == -1) {
thread_start = index;
}
thread_finish = index;
}
++thread_finish;
const int thread_size = thread_finish - thread_start;
#pragma omp critical(can_print)
std::cout << '\t' << process_hostname << ':' << process_number << '.'
<< omp_get_thread_num() << ": range [" << thread_start << ", " <<
thread_finish << "[ size " << thread_size << std::endl;
}
} else {
std::cerr << "usage: hybrid_distr_arg start finish" << std::endl;
}
MPI_Finalize();
}
return 0;
}
int calculate_start(int rank, int end, int workers, int begin) {
const int range = end - begin;
return begin + rank * (range / workers) + std::min(rank, range % workers);
}
int calculate_finish(int rank, int end, int workers, int begin) {
return calculate_start(rank + 1, end, workers, begin);
}
|