mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
16 lines
274 B
C
16 lines
274 B
C
/*
|
|
* @@name: SIMD.1c
|
|
* @@type: C
|
|
* @@compilable: yes
|
|
* @@linkable: no
|
|
* @@expect: success
|
|
* @@version: omp_4.0
|
|
*/
|
|
void star( double *a, double *b, double *c, int n, int *ioff )
|
|
{
|
|
int i;
|
|
#pragma omp simd
|
|
for ( i = 0; i < n; i++ )
|
|
a[i] *= b[i] * c[i+ *ioff];
|
|
}
|