mirror of
https://github.com/RRZE-HPC/OSACA.git
synced 2026-01-05 02:30:08 +01:00
13 lines
198 B
C
13 lines
198 B
C
|
|
void triad(int N){
|
|
void dummy(double*);
|
|
double a[N], b[N], c[N], d[N];
|
|
double s;
|
|
|
|
//STARTLOOP
|
|
for(int i=0; i<N; ++i)
|
|
a[i] = b[i] + c[i] * d[i];
|
|
|
|
dummy(&a[1]);
|
|
}
|