mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-07 23:22:11 +01:00
24 lines
404 B
C
24 lines
404 B
C
/*
|
|
* @@name: nowait.1c
|
|
* @@type: C
|
|
* @@compilable: yes
|
|
* @@linkable: no
|
|
* @@expect: success
|
|
*/
|
|
#include <math.h>
|
|
|
|
void nowait_example(int n, int m, float *a, float *b, float *y, float *z)
|
|
{
|
|
int i;
|
|
#pragma omp parallel
|
|
{
|
|
#pragma omp for nowait
|
|
for (i=1; i<n; i++)
|
|
b[i] = (a[i] + a[i-1]) / 2.0;
|
|
|
|
#pragma omp for nowait
|
|
for (i=0; i<m; i++)
|
|
y[i] = sqrt(z[i]);
|
|
}
|
|
}
|