-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpthreads_routines.hpp
145 lines (100 loc) · 4.1 KB
/
pthreads_routines.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
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
#ifndef PTHREADS_ROUTINE
#define PTHREADS_ROUTINE
#ifdef PTHREADS
template <typename T>
struct thread_data_t{
int id_thread;
int nb_rows;
int nb_columns;
int nb_threads;
T* data_matrix;
T* op_cols;
};
#endif
#ifdef PTHREADS
template <typename T>
void* op_columns(void* thread_arg);
template <typename T>
void* op_sum_columns(void* thread_arg) {
struct thread_data_t<T> *thread_d = (struct thread_data_t<T> *) thread_arg;
int size_work = 0, rest_work, row_start = 0, row_end = 0;
size_work = thread_d->nb_rows/thread_d->nb_threads;
rest_work = thread_d->nb_rows%thread_d->nb_threads;
if((rest_work != 0) && (thread_d->id_thread == 0)){
size_work += rest_work;
}
row_start = thread_d->id_thread*size_work;
row_end = (thread_d->id_thread+1)*size_work;
if((rest_work != 0) && (thread_d->id_thread != 0)){
row_start += rest_work;
row_end += rest_work;
}
//printf("ID_THREAD %d, T_ID %d size_work %d row_start %d row_end %d\n",
// (int)pthread_self(), thread_d->id_thread, size_work, row_start, row_end);
for(int j=row_start; j<row_end; j++){
for(int i=0; i<thread_d->nb_columns; i++){
thread_d->op_cols[i] += thread_d->data_matrix[j*thread_d->nb_columns + i];
//printf(" THREAD_ID %d ROW %d :sum_cols[COLS : %d] %f\n", thread_d->id_thread, j, i, thread_d->op_cols[i]);
}
}
}
template <typename T>
void* op_sub_columns(void* thread_arg) {
struct thread_data_t<T> *thread_d = (struct thread_data_t<T> *) thread_arg;
int size_work = 0, rest_work = 0, row_start = 0, row_end = 0;
size_work = thread_d->nb_rows/thread_d->nb_threads;
rest_work = thread_d->nb_rows%thread_d->nb_threads;
if((rest_work != 0) && (thread_d->id_thread == 0)){
size_work += rest_work;
}
row_start = thread_d->id_thread*size_work;
row_end = (thread_d->id_thread+1)*size_work;
if((rest_work != 0) && (thread_d->id_thread != 0)){
row_start += rest_work;
row_end += rest_work;
}
if(thread_d->id_thread == 0){
for(int k=0; k<thread_d->nb_columns; k++){
thread_d->op_cols[k] = thread_d->data_matrix[row_start*thread_d->nb_columns + k];
}
}
if(thread_d->id_thread != 0){
for(int k=0; k<thread_d->nb_columns; k++){
thread_d->op_cols[k] = -thread_d->data_matrix[row_start*thread_d->nb_columns + k];
}
}
//printf("ID_THREAD %d, T_ID %d size_work %d row_start %d row_end %d\n",
// (int)pthread_self(), thread_d->id_thread, size_work, row_start, row_end);
for(int j=row_start+1; j<row_end; j++){
for(int i=0; i<thread_d->nb_columns; i++){
thread_d->op_cols[i] -= thread_d->data_matrix[j*thread_d->nb_columns + i];
//printf(" THREAD_ID %d ROW %d :sum_cols[COLS : %d] %f\n", thread_d->id_thread, j, i, thread_d->op_cols[i]);
}
}
}
template <typename T>
void* op_mul_columns(void* thread_arg) {
struct thread_data_t<T> *thread_d = (struct thread_data_t<T> *) thread_arg;
int size_work = 0, rest_work = 0, row_start = 0, row_end = 0;
size_work = thread_d->nb_rows/thread_d->nb_threads;
rest_work = thread_d->nb_rows%thread_d->nb_threads;
if((rest_work != 0) && (thread_d->id_thread == 0)){
size_work += rest_work;
}
row_start = thread_d->id_thread*size_work;
row_end = (thread_d->id_thread+1)*size_work;
if((rest_work != 0) && (thread_d->id_thread != 0)){
row_start += rest_work;
row_end += rest_work;
}
//printf("ID_THREAD %d, THREAD_ID %d size_work %d row_start %d row_end %d\n",
// (int)pthread_self(), thread_d->id_thread, size_work, row_start, row_end);
for(int j=row_start; j<row_end; j++){
for(int i=0; i<thread_d->nb_columns; i++){
thread_d->op_cols[i] *= thread_d->data_matrix[j*thread_d->nb_columns + i];
//printf(" THREAD_ID %d ROW %d : mul_cols[COLS : %d] %f\n", thread_d->id_thread, j, i, thread_d->op_cols[i]);
}
}
}
#endif
#endif