ordered (OpenMP ディレクティブ)
並行処理される for ループ下のコードを順次ループとして実行するように指定します。
#pragma omp ordered
structured-block
解説
ordered ディレクティブは、ordered 句を持つ for (OpenMP) コンストラクトまたは parallel for コンストラクトの動的範囲内に含まれるように指定する必要があります。
ordered ディレクティブは OpenMP 句をサポートしません。
詳細については、「2.6.6 ordered コンストラクト」を参照してください。
使用例
// omp_ordered.cpp
// compile with: /openmp
#include <stdio.h>
#include <omp.h>
static float a[1000], b[1000], c[1000];
void test(int first, int last)
{
#pragma omp for schedule(static) ordered
for (int i = first; i <= last; ++i) {
// Do something here.
if (i % 2)
{
#pragma omp ordered
printf_s("test() iteration %d\n", i);
}
}
}
void test2(int iter)
{
#pragma omp ordered
printf_s("test2() iteration %d\n", iter);
}
int main( )
{
int i;
#pragma omp parallel
{
test(1, 8);
#pragma omp for ordered
for (i = 0 ; i < 5 ; i++)
test2(i);
}
}
test() iteration 1
test() iteration 3
test() iteration 5
test() iteration 7
test2() iteration 0
test2() iteration 1
test2() iteration 2
test2() iteration 3
test2() iteration 4