-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatrix.hpp
76 lines (57 loc) · 1.55 KB
/
matrix.hpp
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
#ifndef MATRIX_HPP
#define MATRIX_HPP
#include "stdlib.h"
#include "stdio.h"
#include <time.h>
#include <omp.h>
#include <cstring>
#include <pthread.h>
#include "stdint.h"
using namespace std;
#define MAX_RAND 100.0
#define MIN_RAND 0.0
struct thread_data{
int id_thread;
int nb_rows;
int nb_columns;
int nb_threads;
float* data_matrix;
float* sum_cols;
};
class matrix
{
public:
matrix(int m_, int n_, int nb_threads_) : m(m_), n(n_), nb_threads(nb_threads_){
printf("GENERATING RANDOM MATRIX, PLEASE WAIT ...\n");
if((sum_cols_mtx = (float*)malloc(m*sizeof(float))) == NULL){
printf("error while allocating memory for sum_cols_mtx\n");
exit(1);
}
if((mtx = (float*)malloc(m*n*sizeof(float))) == NULL){
printf("error while allocating memory for mtx\n");
exit(1);
}
for(int j=0; j<n; j++){
for(int i=0; i<m; i++){
mtx[j*m + i] = ((rand() / (double) RAND_MAX) * (MAX_RAND - MIN_RAND) + MIN_RAND);
}
}
}
void print_matrix();
void print_sumcols_matrix();
void sum_cols_matrix_v1();
void sum_cols_matrix_v2();
void sum_cols_matrix_openmp_v2();
void sum_cols_matrix_pthreads_v2();
void memset_sum_cols_mtx();
~matrix(){
free(mtx);
free(sum_cols_mtx);
}
protected:
int n, m;
float* mtx;
float* sum_cols_mtx;
int nb_threads;
};
#endif