次の方法で共有


コンパイラ エラー C3036

'operator': OpenMP 'reduction' 句の無効な演算子トークンです

reduction 句を正しく指定しませんでした。

次の例では警告 C3036 が生成されます。

// C3036.cpp
// compile with: /openmp
static float a[1000], b[1000], c[1000];
void test1(int first, int last) {
   static float dp = 0.0f;
   #pragma omp for nowait reduction(.:dp)   // C3036
   // try the following line instead
   // #pragma omp for nowait reduction(+: dp)
   for (int i = first ; i <= last ; ++i)
      dp += a[i] * b[i];
}