-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_combine8.c
executable file
·518 lines (438 loc) · 12.6 KB
/
test_combine8.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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
/*****************************************************************************/
// gcc -O1 -o test_combine8 test_combine8_redone.c -lrt -lm
//
// combine4 -- base scalar code
// combine6_5 -- unrolled 5 times with 5 accumulators -- best scalar code
// combine8 -- base vector code
// combine8_2 -- unrolled 2 times with 2 accumulators NEED TO ADD
// combine8_4 -- unrolled 4 times with 4 accumulators
// combine8_8 -- unrolled 8 times with 8 accumulators NEED TO ADD
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
#include <math.h>
#define GIG 1000000000
#define CPG 2.9 // Cycles per GHz -- Adjust to your computer
#define SIZE 10000000
#define ITERS 3000
#define DELTA 32
#define BASE 0
#define OPTIONS 6 // NEED TO MODIFY
#define IDENT 1.0
#define OP +
typedef double data_t;
/* Create abstract data type for vector */
typedef struct {
long int len;
data_t *data;
} vec_rec, *vec_ptr;
/* Number of bytes in a vector */
#define VBYTES 32
/* Number of elements in a vector */
#define VSIZE VBYTES/sizeof(data_t)
typedef data_t vec_t __attribute__ ((vector_size(VBYTES)));
typedef union {
vec_t v;
data_t d[VSIZE];
} pack_t;
/*****************************************************************************/
main(int argc, char *argv[])
{
int OPTION;
struct timespec diff(struct timespec start, struct timespec end);
struct timespec time1, time2;
struct timespec time_stamp[OPTIONS][ITERS+1];
int clock_gettime(clockid_t clk_id, struct timespec *tp);
vec_ptr new_vec(long int len);
int get_vec_element(vec_ptr v, long int index, data_t *dest);
long int get_vec_length(vec_ptr v);
int set_vec_length(vec_ptr v, long int index);
int init_vector(vec_ptr v, long int len);
data_t *data_holder;
void combine4(vec_ptr v, data_t *dest);
void combine6_5(vec_ptr v, data_t *dest);
void combine8(vec_ptr v, data_t *dest);
void combine8_4(vec_ptr v, data_t *dest);
//aded functions
void combine8_2(vec_ptr v, data_t *dest);
void combine8_8(vec_ptr v, data_t *dest);
long int i, j, k;
long long int time_sec, time_ns;
long int MAXSIZE = BASE+(ITERS+1)*DELTA;
printf("\n Hello World -- vector examples\n");
// declare and initialize the vector structure
vec_ptr v0 = new_vec(MAXSIZE);
data_holder = (data_t *) malloc(sizeof(data_t));
init_vector(v0, MAXSIZE);
// execute and time ... options from B&O
OPTION = 0;
for (i = 0; i < ITERS; i++) {
set_vec_length(v0,BASE+(i+1)*DELTA);
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time1);
combine4(v0, data_holder);
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time2);
time_stamp[OPTION][i] = diff(time1,time2);
}
OPTION++;
for (i = 0; i < ITERS; i++) {
set_vec_length(v0,BASE+(i+1)*DELTA);
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time1);
combine6_5(v0, data_holder);
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time2);
time_stamp[OPTION][i] = diff(time1,time2);
}
OPTION++;
for (i = 0; i < ITERS; i++) {
set_vec_length(v0,BASE+(i+1)*DELTA);
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time1);
combine8(v0, data_holder);
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time2);
time_stamp[OPTION][i] = diff(time1,time2);
}
OPTION++;
for (i = 0; i < ITERS; i++) {
set_vec_length(v0,BASE+(i+1)*DELTA);
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time1);
combine8_4(v0, data_holder);
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time2);
time_stamp[OPTION][i] = diff(time1,time2);
}
/*added for loops*/
OPTION++;
for (i = 0; i < ITERS; i++) {
set_vec_length(v0,BASE+(i+1)*DELTA);
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time1);
combine8_2(v0, data_holder);
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time2);
time_stamp[OPTION][i] = diff(time1,time2);
}
OPTION++;
for (i = 0; i < ITERS; i++) {
set_vec_length(v0,BASE+(i+1)*DELTA);
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time1);
combine8_8(v0, data_holder);
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time2);
time_stamp[OPTION][i] = diff(time1,time2);
}
/* output times */
printf("\nsize, c4, c6_5, c8, c8_4,c8_2,c8_8");
for (i = 0; i < ITERS; i++) {
printf("\n%d, ", BASE+(i+1)*DELTA);
for (j = 0; j < OPTIONS; j++) {
if (j != 0) printf(", ");
printf("%ld", (long int)((double)(CPG)*(double)
(GIG * time_stamp[j][i].tv_sec + time_stamp[j][i].tv_nsec)));
}
}
printf("\n");
}/* end main */
/**********************************************/
/* Create vector of specified length */
vec_ptr new_vec(long int len)
{
long int i;
/* Allocate and declare header structure */
vec_ptr result = (vec_ptr) malloc(sizeof(vec_rec));
if (!result) return NULL; /* Couldn't allocate storage */
result->len = len;
/* Allocate and declare array */
if (len > 0) {
data_t *data = (data_t *) calloc(len, sizeof(data_t));
if (!data) {
free((void *) result);
return NULL; /* Couldn't allocate storage */
}
result->data = data;
}
else result->data = NULL;
return result;
}
/* Retrieve vector element and store at dest.
Return 0 (out of bounds) or 1 (successful)
*/
int get_vec_element(vec_ptr v, long int index, data_t *dest)
{
if (index < 0 || index >= v->len) return 0;
*dest = v->data[index];
return 1;
}
/* Return length of vector */
long int get_vec_length(vec_ptr v)
{
return v->len;
}
/* Set length of vector */
int set_vec_length(vec_ptr v, long int index)
{
v->len = index;
return 1;
}
/* initialize vector */
int init_vector(vec_ptr v, long int len)
{
long int i;
if (len > 0) {
v->len = len;
for (i = 0; i < len; i++) v->data[i] = (data_t)(i);
return 1;
}
else return 0;
}
data_t *get_vec_start(vec_ptr v)
{
return v->data;
}
/*************************************************/
struct timespec diff(struct timespec start, struct timespec end)
{
struct timespec temp;
if ((end.tv_nsec-start.tv_nsec)<0) {
temp.tv_sec = end.tv_sec-start.tv_sec-1;
temp.tv_nsec = 1000000000+end.tv_nsec-start.tv_nsec;
} else {
temp.tv_sec = end.tv_sec-start.tv_sec;
temp.tv_nsec = end.tv_nsec-start.tv_nsec;
}
return temp;
}
/*************************************************/
/* Combine4: Accumulate result in local variable
* Example of --> Eliminate unneeded memory references */
void combine4(vec_ptr v, data_t *dest)
{
long int i;
long int get_vec_length(vec_ptr v);
data_t *get_vec_start(vec_ptr v);
long int length = get_vec_length(v);
data_t *data = get_vec_start(v);
data_t acc = IDENT;
for (i = 0; i < length; i++) {
acc = acc OP data[i];
}
*dest = acc;
}
/* Combine6_5: Unroll loop by 5, 5 accumulators
* Example of --> parallelism */
void combine6_5(vec_ptr v, data_t *dest)
{
long int i;
long int get_vec_length(vec_ptr v);
data_t *get_vec_start(vec_ptr v);
long int length = get_vec_length(v);
long int limit = length - 1;
data_t *data = get_vec_start(v);
data_t acc0 = IDENT;
data_t acc1 = IDENT;
data_t acc2 = IDENT;
data_t acc3 = IDENT;
data_t acc4 = IDENT;
/* Combine 5 elements at a time w/ 5 acculators */
for (i = 0; i < limit; i+=5) {
acc0 = acc0 OP data[i];
acc1 = acc1 OP data[i+1];
acc2 = acc2 OP data[i+2];
acc3 = acc3 OP data[i+3];
acc4 = acc4 OP data[i+4];
}
/* Finish remaining elements */
for (; i < length; i++) {
acc0 = acc0 OP data[i];
}
*dest = acc0 OP acc1 OP acc2 OP acc3 OP acc4;
}
/* Combine8: Vector version */
void combine8(vec_ptr v, data_t *dest)
{
long int i;
pack_t xfer;
vec_t accum;
data_t *data = get_vec_start(v);
long int cnt = get_vec_length(v);
data_t result = IDENT;
/* Initialize accum entries to IDENT */
for (i = 0; i < VSIZE; i++) xfer.d[i] = IDENT;
accum = xfer.v;
/* Single step until we have memory alignment */
while (((long) data) % VBYTES && cnt) {
result = result OP *data++;
cnt--;
}
/* Step through data with VSIZE-way parallelism */
while (cnt >= VSIZE) {
vec_t chunk = *((vec_t *) data);
accum = accum OP chunk;
data += VSIZE;
cnt -= VSIZE;
}
/* Single-step through the remaining elements */
while (cnt) {
result = result OP *data++;
cnt--;
}
/* Combine elements of accumulator vector */
xfer.v = accum;
for (i = 0; i < VSIZE; i++)
result = result OP xfer.d[i];
/* store result */
*dest = result;
}
/* Combine8_4: Vector 4x unrolled version */
void combine8_4(vec_ptr v, data_t *dest)
{
long int i;
pack_t xfer;
vec_t accum0;
vec_t accum1;
vec_t accum2;
vec_t accum3;
data_t *data = get_vec_start(v);
long int cnt = get_vec_length(v);
data_t result = IDENT;
/* Initialize accum entries to IDENT */
for (i = 0; i < VSIZE; i++) xfer.d[i] = IDENT;
accum0 = xfer.v;
accum1 = xfer.v;
accum2 = xfer.v;
accum3 = xfer.v;
/* Single step until we have memory alignment */
while (((long) data) % (4*VBYTES) && cnt) {
result = result OP *data++;
cnt--;
}
/* Step through data with VSIZE-way parallelism */
while (cnt >= 4*VSIZE) {
vec_t chunk0 = *((vec_t *) data);
vec_t chunk1 = *((vec_t *) data+VSIZE);
vec_t chunk2 = *((vec_t *) data+2*VSIZE);
vec_t chunk3 = *((vec_t *) data+3*VSIZE);
accum0 = accum0 OP chunk0;
accum1 = accum1 OP chunk1;
accum2 = accum2 OP chunk2;
accum3 = accum3 OP chunk3;
data += 4*VSIZE;
cnt -= 4*VSIZE;
}
/* Single-step through the remaining elements */
while (cnt) {
result = result OP *data++;
cnt--;
}
/* Combine elements of accumulator vectors */
xfer.v = (accum0 OP accum1) OP (accum2 OP accum3);
for (i = 0; i < VSIZE; i++)
result = result OP xfer.d[i];
/* store result */
*dest = result;
}
//added function definitions
void combine8_2(vec_ptr v, data_t *dest)
{
long int i;
pack_t xfer;
vec_t accum0;
vec_t accum1;
/*vec_t accum2;
vec_t accum3;*/
data_t *data = get_vec_start(v);
long int cnt = get_vec_length(v);
data_t result = IDENT;
/* Initialize accum entries to IDENT */
for (i = 0; i < VSIZE; i++) xfer.d[i] = IDENT;
accum0 = xfer.v;
accum1 = xfer.v;
/*accum2 = xfer.v;
accum3 = xfer.v;*/
/* Single step until we have memory alignment */
while (((long) data) % (2*VBYTES) && cnt) {
result = result OP *data++;
cnt--;
}
/* Step through data with VSIZE-way parallelism */
while (cnt >= 2*VSIZE) {
vec_t chunk0 = *((vec_t *) data);
vec_t chunk1 = *((vec_t *) data+VSIZE);
/*vec_t chunk2 = *((vec_t *) data+2*VSIZE);
vec_t chunk3 = *((vec_t *) data+3*VSIZE);*/
accum0 = accum0 OP chunk0;
accum1 = accum1 OP chunk1;
/* accum2 = accum2 OP chunk2;
accum3 = accum3 OP chunk3;*/
data += 2*VSIZE;
cnt -= 2*VSIZE;
}
/* Single-step through the remaining elements */
while (cnt) {
result = result OP *data++;
cnt--;
}
/* Combine elements of accumulator vectors */
xfer.v = (accum0 OP accum1); // OP (accum2 OP accum3);
for (i = 0; i < VSIZE; i++)
result = result OP xfer.d[i];
/* store result */
*dest = result;
}
void combine8_8(vec_ptr v, data_t *dest)
{
long int i;
pack_t xfer;
vec_t accum0;
vec_t accum1;
vec_t accum2;
vec_t accum3;
vec_t accum4;
vec_t accum5;
vec_t accum6;
vec_t accum7;
data_t *data = get_vec_start(v);
long int cnt = get_vec_length(v);
data_t result = IDENT;
/* Initialize accum entries to IDENT */
for (i = 0; i < VSIZE; i++) xfer.d[i] = IDENT;
accum0 = xfer.v;
accum1 = xfer.v;
accum2 = xfer.v;
accum3 = xfer.v;
accum4 = xfer.v;
accum5 = xfer.v;
accum6 = xfer.v;
accum7 = xfer.v;
/* Single step until we have memory alignment */
while (((long) data) % (8*VBYTES) && cnt) {
result = result OP *data++;
cnt--;
}
/* Step through data with VSIZE-way parallelism */
while (cnt >= 8*VSIZE) {
vec_t chunk0 = *((vec_t *) data);
vec_t chunk1 = *((vec_t *) data+VSIZE);
vec_t chunk2 = *((vec_t *) data+2*VSIZE);
vec_t chunk3 = *((vec_t *) data+3*VSIZE);
vec_t chunk4 = *((vec_t *) data+4*VSIZE);
vec_t chunk5 = *((vec_t *) data+5*VSIZE);
vec_t chunk6 = *((vec_t *) data+6*VSIZE);
vec_t chunk7 = *((vec_t *) data+7*VSIZE);
accum0 = accum0 OP chunk0;
accum1 = accum1 OP chunk1;
accum2 = accum2 OP chunk2;
accum3 = accum3 OP chunk3;
accum4 = accum4 OP chunk4;
accum5 = accum5 OP chunk5;
accum6 = accum6 OP chunk6;
accum7 = accum7 OP chunk7;
data += 8*VSIZE;
cnt -= 8*VSIZE;
}
/* Single-step through the remaining elements */
while (cnt) {
result = result OP *data++;
cnt--;
}
/* Combine elements of accumulator vectors */
xfer.v = (accum0 OP accum1) OP (accum2 OP accum3) OP (accum4 OP accum5) OP (accum6 OP accum7);
for (i = 0; i < VSIZE; i++)
result = result OP xfer.d[i];
/* store result */
*dest = result;
}