-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMerge_Sort_MPI.cpp
151 lines (114 loc) · 2.97 KB
/
Merge_Sort_MPI.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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <mpi.h>
#include <chrono>
void merge(int *, int *, int, int, int);
void mergeSort(int *, int *, int, int);
int main(int argc, char** argv) {
/********** Create and populate the array **********/
int n = atoi(argv[1]);
int *original_array = (int*)malloc(n * sizeof(int));
int c;
srand(time(NULL));
// printf("\n");
// printf("\n");
/********** Initialize MPI **********/
int world_rank;
int world_size;
// measure time
auto start = std::chrono::high_resolution_clock::now();
MPI_Init(&argc, &argv);
MPI_Comm_rank(MPI_COMM_WORLD, &world_rank);
MPI_Comm_size(MPI_COMM_WORLD, &world_size);
if (world_rank == 0) {
for(c = 0; c < n; c++) {
original_array[c] = rand() % n;
}
}
/********** Divide the array into equal-sized chunks **********/
int size = n / world_size;
/********** Send each subarray to each process **********/
int *sub_array = (int*)malloc(size * sizeof(int));
MPI_Scatter(original_array, size, MPI_INT, sub_array, size, MPI_INT, 0, MPI_COMM_WORLD);
/********** Perform the mergesort on each process **********/
int *tmp_array = (int*)malloc(size * sizeof(int));
mergeSort(sub_array, tmp_array, 0, size - 1);
/********** Gather the sorted subarrays into one **********/
int *sorted = NULL;
if(world_rank == 0) {
sorted = (int*)malloc(n * sizeof(int));
}
MPI_Gather(sub_array, size, MPI_INT, sorted, size, MPI_INT, 0, MPI_COMM_WORLD);
/********** Make the final mergeSort call **********/
if(world_rank == 0) {
int *other_array = (int*)malloc(n * sizeof(int));
mergeSort(sorted, other_array, 0, n - 1);
/********** Display the sorted array **********/
printf("This is the sorted array: ");
for(c = 0; c < 100; c++) {
printf("%d ", sorted[c]);
}
printf("\n");
printf("\n");
/********** Clean up root **********/
free(sorted);
free(other_array);
}
/********** Clean up rest **********/
free(original_array);
free(sub_array);
free(tmp_array);
/********** Finalize MPI **********/
MPI_Barrier(MPI_COMM_WORLD);
MPI_Finalize();
// measure time
auto end = std::chrono::high_resolution_clock::now();
if (world_rank == 0) {
std::chrono::duration<float> duration = end - start;
printf("Time: %f\n", duration.count());
}
}
/********** Merge Function **********/
void merge(int *a, int *b, int l, int m, int r) {
int h, i, j, k;
h = l;
i = l;
j = m + 1;
while((h <= m) && (j <= r)) {
if(a[h] <= a[j]) {
b[i] = a[h];
h++;
}
else {
b[i] = a[j];
j++;
}
i++;
}
if(m < h) {
for(k = j; k <= r; k++) {
b[i] = a[k];
i++;
}
}
else {
for(k = h; k <= m; k++) {
b[i] = a[k];
i++;
}
}
for(k = l; k <= r; k++) {
a[k] = b[k];
}
}
/********** Recursive Merge Function **********/
void mergeSort(int *a, int *b, int l, int r) {
int m;
if(l < r) {
m = (l + r)/2;
mergeSort(a, b, l, m);
mergeSort(a, b, m + 1, r);
merge(a, b, l, m, r);
}
}