-
Notifications
You must be signed in to change notification settings - Fork 43
/
vadd_heap.c
65 lines (53 loc) · 1.41 KB
/
vadd_heap.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
#include <stdio.h>
#include <stdlib.h>
#include <omp.h>
#define N 10000000
#define TOL 0.0000001
//
// This is a simple program to add two vectors
// and verify the results.
//
// History: Written by Tim Mattson, November 2017
//
int main()
{
float *a = (float *)malloc(sizeof(float) * N);
float *b = (float *)malloc(sizeof(float) * N);
float *c = (float *)malloc(sizeof(float) * N);
float *res = (float *)malloc(sizeof(float) * N);
int err=0;
double init_time, compute_time, test_time;
init_time = -omp_get_wtime();
// fill the arrays
for (int i=0; i<N; i++){
a[i] = (float)i;
b[i] = 2.0*(float)i;
c[i] = 0.0;
res[i] = i + 2*i;
}
init_time += omp_get_wtime();
compute_time = -omp_get_wtime();
// add two vectors
for (int i=0; i<N; i++){
c[i] = a[i] + b[i];
}
compute_time += omp_get_wtime();
test_time = -omp_get_wtime();
// test results
for(int i=0;i<N;i++){
float val = c[i] - res[i];
val = val*val;
if(val>TOL) err++;
}
test_time += omp_get_wtime();
printf(" vectors added with %d errors\n",err);
free(a);
free(b);
free(c);
free(res);
printf("Init time: %.3fs\n", init_time);
printf("Compute time: %.3fs\n", compute_time);
printf("Test time: %.3fs\n", test_time);
printf("Total time: %.3fs\n", init_time + compute_time + test_time);
return 0;
}