mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
16 lines
250 B
C
16 lines
250 B
C
/*
|
|
* @@name: SIMD.4
|
|
* @@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;
|
|
}
|