mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
25 lines
819 B
TeX
25 lines
819 B
TeX
\pagebreak
|
|
\section{Fortran Private Loop Iteration Variables}
|
|
\label{sec:fort_loopvar}
|
|
\fortranspecificstart
|
|
\index{loop variables, Fortran}
|
|
|
|
In general loop iteration variables will be private, when used in the \plc{do-loop}
|
|
of a \code{do} and \code{parallel do} construct or in sequential loops in a
|
|
\code{parallel} construct (see Section 2.7.1 and Section 2.14.1 of
|
|
the OpenMP 4.0 specification). In the following example of a sequential
|
|
loop in a \code{parallel} construct the loop iteration variable \plc{I} will
|
|
be private.
|
|
|
|
\ffreenexample{fort_loopvar}{1}
|
|
|
|
In exceptional cases, loop iteration variables can be made shared, as in the following
|
|
example:
|
|
|
|
\ffreenexample{fort_loopvar}{2}
|
|
|
|
Note however that the use of shared loop iteration variables can easily lead to
|
|
race conditions.
|
|
\fortranspecificend
|
|
|