mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
29 lines
1.0 KiB
TeX
29 lines
1.0 KiB
TeX
\pagebreak
|
|
\chapter{The \code{nowait} Clause}
|
|
\label{chap:nowait}
|
|
|
|
If there are multiple independent loops within a \code{parallel} region, you
|
|
can use the \code{nowait} clause to avoid the implied barrier at the end of the
|
|
loop construct, as follows:
|
|
|
|
\cexample{nowait}{1c}
|
|
|
|
\fexample{nowait}{1f}
|
|
|
|
In the following example, static scheduling distributes the same logical iteration
|
|
numbers to the threads that execute the three loop regions. This allows the \code{nowait}
|
|
clause to be used, even though there is a data dependence between the loops. The
|
|
dependence is satisfied as long the same thread executes the same logical iteration
|
|
numbers in each loop.
|
|
|
|
Note that the iteration count of the loops must be the same. The example satisfies
|
|
this requirement, since the iteration space of the first two loops is from \code{0}
|
|
to \code{n-1} (from \code{1} to \code{N} in the Fortran version), while the
|
|
iteration space of the last loop is from \code{1} to \code{n} (\code{2} to
|
|
\code{N+1} in the Fortran version).
|
|
|
|
\cexample{nowait}{2c}
|
|
|
|
\fexample{nowait}{2f}
|
|
|