HOME
| OPENMP API Specification: Version 5.0 November 2018

2.13.17  Target Parallel Worksharing-Loop Construct

SummaryThe target parallel worksharing-loop construct is a shortcut for specifying a target construct containing a parallel worksharing-loop construct and no other statements.

Syntax

SVG-Viewer needed.

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

 
#pragma omp target parallel for [clause[ [,] clause] ... ] new-line 
    for-loops  

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

SVG-Viewer needed.

SVG-Viewer needed.

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

 
!$omp target parallel do [clause[ [,] clause] ... ] 
    do-loops 
[!$omp end target parallel do]  

where clause can be any of the clauses accepted by the target or parallel do directives, except for copyin, with identical meanings and restrictions.

If an end target parallel do directive is not specified, an end target parallel do directive is assumed at the end of the do-loops.

SVG-Viewer needed.

DescriptionThe semantics are identical to explicitly specifying a target directive immediately followed by a parallel worksharing-loop directive.

RestrictionsThe restrictions for the target and parallel worksharing-loop constructs apply except for the following explicit modifications:

Cross References