HOME
| OPENMP API Specification: Version 5.1 November 2020

2.16.22  target teams distribute Construct

Summary The target teams distribute construct is a shortcut for specifying a target construct containing a teams distribute construct and no other statements.

Syntax

SVG-Viewer needed.

The syntax of the target teams distribute construct is as follows:  

 
#pragma omp target teams distribute [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 teams distribute directives with identical meanings and restrictions.

SVG-Viewer needed.

SVG-Viewer needed.

The syntax of the target teams distribute construct is as follows:  

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

where loop-nest is a canonical loop nest and clause can be any of the clauses accepted by the target or teams distribute directives with identical meanings and restrictions.

If an end target teams distribute directive is not specified, an end targetteams distribute directive is assumed at the end of the loop-nest.

SVG-Viewer needed.

Description The semantics are identical to explicitly specifying a target directive immediately followed by a teams distribute directive.

Restrictions The restrictions for the target and teams distribute constructs apply.

Cross References