Visible to Intel only — GUID: GUID-92C408D7-EE81-4ADD-B059-B809526EEF19
Visible to Intel only — GUID: GUID-92C408D7-EE81-4ADD-B059-B809526EEF19
PARALLEL MASKED
OpenMP* Fortran Compiler Directive: Creates a PARALLEL construct containing a MASKED construct, with no Fortran statements in the PARALLEL construct which are not also in the MASKED construct. This feature is only available for ifx.
Syntax
!$OMP PARALLEL MASKED [clause[[,] clause]... ]
loosely-structured-block
!$OMP END PARALLEL MASKED
-or-
!$OMP PARALLEL MASKED [clause[[,] clause]... ]
strictly-structured-block
[!$OMP END PARALLEL MASKED]
clause |
Can be any of the clauses accepted by the PARALLEL or MASKED directives with identical meanings and restrictions. |
loosely-structured-block |
Is a structured block (section) of statements or constructs. You cannot branch into or out of the block. |
strictly-structured-block |
Is a Fortran BLOCK construct. You cannot branch into or out of the BLOCK construct. |
This combined directive provides a shortcut for specifying a PARALLEL construct with a MASKED construct nested inside of it. The semantics are identical to a MASKED construct specified immediately after a PARALLEL construct; the only Fortran statements in the construct are inside the block.
All restrictions for PARALLEL and MASKED constructs apply to this combined construct.