-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackup.c
138 lines (118 loc) · 2.61 KB
/
backup.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
#include <stdio.h>
#include <stdlib.h>
#include "mpi.h"
#include "as1.h"
main(int argc, char* argv[]) {
double *part_A;
double *A;
double *b;
double *y;
int rank, p, m, n, i ,j, local_m;
int offseti, size, rem;
MPI_Status *status;
m = atoi(argv[1]);
n = atoi(argv[2]);
MPI_Init(&argc, &argv);
MPI_Comm_size(MPI_COMM_WORLD, &p);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
// Find how many rows per process.
local_m = m/p;
rem = m % p;
if (rank < rem) {
local_m++;
}
// Allocate memory.
b = malloc( n*sizeof(double));
if (rank == 0) {
A = malloc(m * n * sizeof(double));
y = malloc(m * sizeof(double));
}
else {
A = malloc(local_m * n * sizeof(double));
y = malloc(local_m * sizeof(double));
}
// Generate matrix and vector
if (rank == 0) {
genMatrix(m, n, A);
genVector(n, b);
}
// Distribute the data
if (rank == 0) {
offset = 0;
for (i = 1; i < p; i++) {
if (i - 1 < rem) {
offset += m/p + 1;
} else {
offset += m/p;
}
if (i < rem) {
size = m/p + 1;
} else {
size = m/p;
}
MPI_Send(A + offset, size, MPI_DOUBLE, i, 0, MPI_COMM_WORLD);
}
} else {
MPI_Recv(A, local_m, MPI_DOUBLE, 0, 0, MPI_COMM_WORLD, &status);
}
MPI_Bcast(b, n, MPI_DOUBLE, 0, MPI_COMM_WORLD);
compMatrixTimesVector(local_m, n, A, b, y);
// Distribute the data
if (rank > 0) {
MPI_Send(y, local_m, MPI_DOUBLE, 0, 0, MPI_COMM_WORLD);
} else {
for (i = 1; i < p; i++) {
if (i - 1 < rem) {
offset += m/p + 1;
} else {
offset += m/p;
}
if (i < rem) {
size = m/p + 1;
} else {
size = m/p;
}
// compute offset
MPI_Recv(y + offset, size, MPI_DOUBLE, i, 0, MPI_COMM_WORLD, &status);
}
}
if (rank == 0) {
getResult(m, n, A, b, y);
}
MPI_Finalize();
}
void getResult(int m, int n, double *A, double *b, double *y) {
// allocate buffer, r
compDorProduct(m,n, A, b, r);
for (i = 0; i < m*n; i++) {
if (fabs(r[i]-y[i]) > 1e-14) {
printf("Error in Parallel computation");
exit(1);
}
}
}
void compMatrixTimesVector(int m, int n, double *A, double *b, double *y) {
int i, j;
for (i = 0; i < m; i++) {
y[i] = 0.0;
for (j = 0; j < n; j++) {
double *pA = A+i*n;
part_y[i] += *(pA+j) * b[j];
}
}
}
void printMatrix(int m, int n, double *A) {
int i, j;
for (i = 0; i < m; i++) {
for (j = 0; j < n; j++)
printf("%4.1f ", A[i * n + j]);
printf("\n");
}
}
void printB(double *b, int n) {
int i;
printf("\n");
for (i = 0; i < n; i++)
printf("%4.1f ", b[i]);
printf("\n");
}