Deprecated directives

The SMP directive listed in the following table has been deprecated and might be removed in a future release. Use the corresponding OpenMP directive to obtain the same behavior.

Table 1. Deprecated SMP directives
SMP directive name OpenMP directive/clause name
#pragma ibm schedule The #pragma omp parallel for pragma with theschedule clause.

You can replace the deprecated SMP directive with the corresponding OpenMP one. For example:

#pragma omp parallel for schedule(static, 5)
for (i=0; i<N; i++)
{
  // ...
}


Voice your opinion on getting help information Ask IBM compiler experts a technical question in the IBM XL compilers forum Reach out to us