-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatrix.cpp
45 lines (44 loc) · 1.23 KB
/
matrix.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
#include "simple-multithreader.h"
#include <assert.h>
int main(int argc, char** argv) {
// intialize problem size
int numThread = argc>1 ? atoi(argv[1]) : 2;
int size = argc>2 ? atoi(argv[2]) : 1024;
// allocate matrices
int** A = new int*[size];
int** B = new int*[size];
int** C = new int*[size];
printf("For creating threads\n");
parallel_for(0, size, [=](int i) {
A[i] = new int[size];
B[i] = new int[size];
C[i] = new int[size];
for(int j=0; j<size; j++) {
// initialize the matrices
std::fill(A[i], A[i]+size, 1);
std::fill(B[i], B[i]+size, 1);
std::fill(C[i], C[i]+size, 0);
}
}, numThread);
// start the parallel multiplication of two matrices
printf("For multiplication\n");
parallel_for(0, size, 0, size, [&](int i, int j) {
for(int k=0; k<size; k++) {
C[i][j] += A[i][k] * B[k][j];
}
}, numThread);
// verify the result matrix
for(int i=0; i<size; i++) for(int j=0; j<size; j++) assert(C[i][j] == size);
printf("Test Success. \n");
// cleanup memory
printf("For deleting threads\n");
parallel_for(0, size, [=](int i) {
delete [] A[i];
delete [] B[i];
delete [] C[i];
}, numThread);
delete[] A;
delete[] B;
delete[] C;
return 0;
}