OpenMP-Examples/sources/Example_SIMD.4.c
2020-06-26 07:54:45 -07:00

16 lines
251 B
C

/*
* @@name: SIMD.4c
* @@type: C
* @@compilable: yes
* @@linkable: no
* @@expect: success
* @@version: omp_4.0
*/
void work( float *b, int n, int m )
{
int i;
#pragma omp simd safelen(16)
for (i = m; i < n; i++)
b[i] = b[i-m] - 1.0f;
}