-
Notifications
You must be signed in to change notification settings - Fork 0
/
mpi_dynamic.c
287 lines (267 loc) · 9.27 KB
/
mpi_dynamic.c
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
#include <mpi.h>
#include <stdio.h>
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include <png.h>
#define PNG_NO_SETJMP
const int MAX_ITER = 10000;
void write_png(const char *filename, const size_t width, const size_t height, const int *buffer);
void eval_correct(int *res_imag, int width, int height, double upper, double lower, double right, double left);
int main(int argc, char *argv[])
{
MPI_Init(NULL, NULL);
#ifdef TIME
double local_begin_time = MPI_Wtime();
double local_end_time, min_begin_time, max_end_time = 0.0;
#endif
// arguments parse
double left = strtod(argv[2], 0);
double right = strtod(argv[3], 0);
double lower = strtod(argv[4], 0);
double upper = strtod(argv[5], 0);
int width = strtol(argv[6], 0, 10);
int height = strtol(argv[7], 0, 10);
int local_height = 0;
const char *filename = argv[8];
int *image = NULL;
int *local_image = NULL;
// local vars for mpi
int my_rank, comm_size;
MPI_Status mpi_status;
int height_start, height_end;
int active_proc_counts = 0;
int current_height = 0;
int terminal_tag = -1;
int *proc_height_records = NULL;
MPI_Comm_rank(MPI_COMM_WORLD, &my_rank);
MPI_Comm_size(MPI_COMM_WORLD, &comm_size);
int step = 1;
local_image = (int *)malloc(step * width * sizeof(int));
// master slave
if (my_rank == 0)
{
#ifdef DEBUG
printf("Debug Mode:\n");
#endif
#ifdef TIME
printf("Record Time\n");
#endif
image = (int *)malloc(width * height * sizeof(int));
proc_height_records = (int *)malloc((comm_size - 1) * sizeof(int));
// when only master proc
if (comm_size == 1)
{
for (int j = 0; j < height; ++j)
{
double y0 = j * ((upper - lower) / height) + lower;
for (int i = 0; i < width; ++i)
{
double x0 = i * ((right - left) / width) + left;
int repeats = 0;
double x = 0;
double y = 0;
double length_squared = 0;
for (; repeats < MAX_ITER && length_squared < 4; ++repeats)
{
double temp = x * x - y * y + x0;
y = 2 * x * y + y0;
x = temp;
length_squared = x * x + y * y;
}
image[j * width + i] = repeats;
}
}
}
int remainder = height % step;
if (remainder != 0)
{
for (int j = 0; j < remainder; ++j)
{
double y0 = j * ((upper - lower) / height) + lower;
for (int i = 0; i < width; ++i)
{
double x0 = i * ((right - left) / width) + left;
int repeats = 0;
double x = 0;
double y = 0;
double length_squared = 0;
for (; repeats < MAX_ITER && length_squared < 4; ++repeats)
{
double temp = x * x - y * y + x0;
y = 2 * x * y + y0;
x = temp;
length_squared = x * x + y * y;
}
image[j * width + i] = repeats;
}
}
}
current_height = remainder;
for (int slave_proc = 1; slave_proc < comm_size; slave_proc++)
{
if (current_height < height)
{
MPI_Send(¤t_height, 1, MPI_INT, slave_proc, 0, MPI_COMM_WORLD);
proc_height_records[slave_proc] = current_height;
current_height += step;
active_proc_counts++;
}
else
{
MPI_Send(&terminal_tag, 1, MPI_INT, slave_proc, 0, MPI_COMM_WORLD);
}
}
while (active_proc_counts > 0)
{
MPI_Recv(local_image, step * width, MPI_INT, MPI_ANY_SOURCE, 1, MPI_COMM_WORLD, &mpi_status);
active_proc_counts--;
memcpy(&image[proc_height_records[mpi_status.MPI_SOURCE] * width], local_image, sizeof(int) * step * width);
if (current_height < height)
{
MPI_Send(¤t_height, 1, MPI_INT, mpi_status.MPI_SOURCE, 1, MPI_COMM_WORLD);
proc_height_records[mpi_status.MPI_SOURCE] = current_height;
current_height += step;
active_proc_counts++;
}
else
{
MPI_Send(&terminal_tag, 1, MPI_INT, mpi_status.MPI_SOURCE, 1, MPI_COMM_WORLD);
}
}
}
else
{
// slave procs
MPI_Recv(&local_height, 1, MPI_INT, 0, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
while (local_height != terminal_tag)
{
for (int s = 0; s < step; s++)
{
double y0 = (local_height + s) * ((upper - lower) / height) + lower;
for (int i = 0; i < width; ++i)
{
double x0 = i * ((right - left) / width) + left;
int repeats = 0;
double x = 0;
double y = 0;
double length_squared = 0;
for (; repeats < MAX_ITER && length_squared < 4; ++repeats)
{
double temp = x * x - y * y + x0;
y = 2 * x * y + y0;
x = temp;
length_squared = x * x + y * y;
}
local_image[s * width + i] = repeats;
}
}
MPI_Send(local_image, step * width, MPI_INT, 0, 1, MPI_COMM_WORLD);
MPI_Recv(&local_height, 1, MPI_INT, 0, 1, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
// printf("proc %d, local_height:%d\n", my_rank, local_height);
}
}
if (my_rank == 0)
{
#ifdef DEBUG
eval_correct(image, width, height, upper, lower, right, left);
#endif
write_png(filename, width, height, image);
}
free(image);
free(local_image);
free(proc_height_records);
#ifdef TIME
local_end_time = MPI_Wtime();
printf("Proc %d finished in %lf seconds\n", my_rank, local_end_time - local_begin_time);
MPI_Reduce(&local_begin_time, &min_begin_time, 1, MPI_DOUBLE, MPI_MIN, 0, MPI_COMM_WORLD);
MPI_Reduce(&local_end_time, &max_end_time, 1, MPI_DOUBLE, MPI_MAX, 0, MPI_COMM_WORLD);
#endif
MPI_Finalize();
#ifdef TIME
if (my_rank == 0)
{
printf("mpi_dynamic program finished in %lf seconds\n", max_end_time - min_begin_time);
}
#endif
return 0;
}
void write_png(const char *filename, const size_t width, const size_t height, const int *buffer)
{
FILE *fp = fopen(filename, "wb");
assert(fp);
png_structp png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
assert(png_ptr);
png_infop info_ptr = png_create_info_struct(png_ptr);
assert(info_ptr);
png_init_io(png_ptr, fp);
png_set_IHDR(png_ptr, info_ptr, width, height, 8, PNG_COLOR_TYPE_RGB, PNG_INTERLACE_NONE,
PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
png_write_info(png_ptr, info_ptr);
size_t row_size = 3 * width * sizeof(png_byte);
png_bytep row = (png_bytep)malloc(row_size);
for (int y = 0; y < height; ++y)
{
memset(row, 0, row_size);
for (int x = 0; x < width; ++x)
{
int p = buffer[(height - 1 - y) * width + x];
png_bytep color = row + x * 3;
if (p != MAX_ITER)
{
if (p & 16)
{
color[0] = 240;
color[1] = color[2] = p % 16 * 16;
}
else
{
color[0] = p % 16 * 16;
}
}
}
png_write_row(png_ptr, row);
}
free(row);
png_write_end(png_ptr, NULL);
png_destroy_write_struct(&png_ptr, &info_ptr);
fclose(fp);
}
void eval_correct(int *res_imag, int width, int height, double upper, double lower, double right, double left)
{
/* allocate memory for image */
int *image = (int *)malloc(width * height * sizeof(int));
assert(image);
/* mandelbrot set */
for (int j = 0; j < height; ++j)
{
double y0 = j * ((upper - lower) / height) + lower;
for (int i = 0; i < width; ++i)
{
double x0 = i * ((right - left) / width) + left;
int repeats = 0;
double x = 0;
double y = 0;
double length_squared = 0;
for (; repeats < MAX_ITER && length_squared < 4; ++repeats)
{
double temp = x * x - y * y + x0;
y = 2 * x * y + y0;
x = temp;
length_squared = x * x + y * y;
}
image[j * width + i] = repeats;
}
}
double error_count = 0;
for (int i = 0; i < width * height; i++)
{
if (res_imag[i] != image[i])
{
error_count++;
}
}
double error_rate = error_count / (width * height);
printf("All errors: %lf, error rate compared with sequential program: %lf\n", error_count, error_rate);
free(image);
}