-
Notifications
You must be signed in to change notification settings - Fork 2
/
trisolv.c
45 lines (41 loc) · 964 Bytes
/
trisolv.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 L[4000 - 1 + 2][4000 - 1 - 1 + 2] = { 0 }, b[4000 - 1 + 2] = { 0 }, x[4000 - 1 + 2] = { 0 };
#pragma omp parallel
{
#pragma omp for
for (int i = 0; i <= 4000 - 1; i++) {
#pragma omp atomic write
x[i] = b[i];
for (int j = 0; j <= i - 1; j++) {
#pragma omp atomic write
x[i] = x[i] - L[i][j] * x[j];
}
#pragma omp atomic write
x[i] = x[i] / L[i][i];
}
}
}
int main()
{
double start = 0.0, end = 0.0;
start = clock();
kernel();
end = clock();
printf("Total time taken = %fs\n", end - start);
return 0;
}