-
Notifications
You must be signed in to change notification settings - Fork 2
/
jacobi-1d.c
45 lines (41 loc) · 985 Bytes
/
jacobi-1d.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
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <omp.h>
#include <sys/time.h>
double clock()
{
struct timeval Tp;
int stat;
stat = gettimeofday(&Tp, NULL);
if (stat != 0)
printf("Error return from gettimeofday: %d", stat);
return (Tp.tv_sec + Tp.tv_usec * 1.0e-6);
}
void kernel()
{
static float A[3999 - 1 + 2] = { 0 }, B[3999 - 1 + 2] = { 0 };
#pragma omp parallel
{
#pragma omp for
for (int t = 0; t <= 1000 - 1; t++) {
for (int i = 1; i <= 3999 - 1; i++) {
#pragma omp atomic write
B[i] = 0.333330 * (A[i] + A[i - 1] + A[i + 1]);
}
for (int i = 1; i <= 3999 - 1; i++) {
#pragma omp atomic write
A[i] = 0.333330 * (B[i] + B[i - 1] + B[i + 1]);
}
}
}
}
int main()
{
double start = 0.0, end = 0.0;
start = clock();
kernel();
end = clock();
printf("Total time taken = %fs\n", end - start);
return 0;
}