HOME
| OPENMP API Specification: Version 5.1 November 2020

2.16.19  targetparallelloop Construct

Summary The target parallel loop construct is a shortcut for specifying a target construct containing a parallel loop construct and no other statements.

Syntax

SVG-Viewer needed.

The syntax of the target parallel loop construct is as follows:  

 
#pragma omp target parallel loop [clause[ [,] clause] ... ] new-line 
    loop-nest  

where loop-nest is a canonical loop nest and clause can be any of the clauses accepted by the target or parallel loop directives, except for copyin, with identical meanings and restrictions.

SVG-Viewer needed.

SVG-Viewer needed.

The syntax of the target parallel loop construct is as follows:  

 
!$omp target parallel loop [clause[ [,] clause] ... ] 
    loop-nest 
[!$omp end target parallel loop]  

where loop-nest is a canonical loop nest and clause can be any of the clauses accepted by the target or parallel loop directives, except for copyin, with identical meanings and restrictions.

If an end targetparallel loop directive is not specified, an end targetparallel loop directive is assumed at the end of the loop-nest. nowait may not be specified on an end target parallel loop directive.

SVG-Viewer needed.

Description The semantics are identical to explicitly specifying a target directive immediately followed by a parallel loop directive.

Restrictions The restrictions for the target and parallel loop constructs apply except for the following explicit modifications:

Cross References