A.4 nowait 句の使用
並行領域内で独立したループが複数ある場合、nowait 句 (11 ページのセクション 2.4.1) を使用して for ディレクティブの末尾にある暗黙のバリアを回避できます。次に例を示します。
#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]);
}