SINGLE

OpenMP* Fortran Compiler Directive: Specifies that a block of code is to be executed by only one thread in the team.

Syntax

c$OMP SINGLE [clause[[,] clause] ... ]

   block

c$OMP END SINGLE [modifier]

c

Is one of the following: C (or c), !, or * (see Syntax Rules for Compiler Directives).

clause

Is one of the following:

block

Is a structured block (section) of statements or constructs. You cannot branch into or out of the block.

modifier

Is one of the following:

Threads in the team that are not executing this directive wait at the END SINGLE directive unless NOWAIT is specified.

SINGLE directives must be encountered by all threads in a team or by none at all. It must also be encountered in the same order by all threads in a team.

Example

In the following example, the first thread that encounters the SINGLE directive executes subroutines OUTPUT and INPUT:

c$OMP PARALLEL DEFAULT(SHARED)

CALL WORK(X)

c$OMP BARRIER

c$OMP SINGLE

CALL OUTPUT(X)

CALL INPUT(Y)

c$OMP END SINGLE

CALL WORK(Y)

c$OMP END PARALLEL

You should not make assumptions as to which thread executes the SINGLE section. All other threads skip the SINGLE section and stop at the barrier at the END SINGLE construct. If other threads can proceed without waiting for the thread executing the SINGLE section, you can specify NOWAIT in the END SINGLE directive.

See Also