नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'schedule(runtime)' : chunk_size expression is not allowed
Remarks
A value cannot be passed to the run-time parameter of the schedule clause.
Example
The following example generates 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) ;
}