コンパイラ エラー C3024
'schedule(runtime)' : chunk_size 式は使用できません
値をスケジュール句の実行時パラメーターに渡すことはできません。
次の例では C3024 が生成されます。
// C3024.cpp
// compile with: /openmp /link vcomps.lib
#include <stdio.h>
#include "omp.h"
int main() {
int i;
#pragma omp parallel for schedule(runtime, 10) // C3024
for (i = 0; i < 10; ++i) ;
#pragma omp parallel for schedule(runtime) // OK
for (i = 0; i < 10; ++i) ;
}