Visible to Intel only — GUID: GUID-42054041-9903-4A41-AC94-E638556AC3AD
Visible to Intel only — GUID: GUID-42054041-9903-4A41-AC94-E638556AC3AD
PARALLEL MASTER TASKLOOP SIMD
OpenMP* Fortran Compiler Directive: (Deprecated, replaced by PARALLEL MASKED TASKLOOP SIMD) Creates a PARALLEL construct containing a MASTER TASKLOOP SIMD construct, with no Fortran statements in the PARALLEL construct that are not also in the MASTER TASKLOOP SIMD construct. This feature is only available for ifx.
Syntax
!$OMP PARALLEL MASTER TASKLOOP SIMD [clause[[,] clause]... ]
loop-nest
[!$OMP END PARALLEL MASTER TASKLOOP SIMD]
clause |
Can be any of the clauses accepted by the PARALLEL or MASTER TASKLOOP SIMD directives with identical meanings and restrictions. |
loop-nest |
Is a nest of DO loops in canonical form. |
This combined directive provides a shortcut for specifying a PARALLEL construct with a MASTER TASKLOOP SIMD construct nested inside of it. The semantics are identical to a MASTER TASKLOOP SIMD construct specified immediately after a PARALLEL construct.
All restrictions for PARALLEL and MASTER TASKLOOP SIMD constructs apply to this combined construct.
The PARALLEL MASTER TASKLOOP SIMD directive is deprecated; you should use the PARALLEL MASKED TASKLOOP SIMD directive.
See Also
To learn more about canonical form loops, see the OpenMP* specification.