mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
14 lines
509 B
TeX
14 lines
509 B
TeX
\pagebreak
|
|
\section{The \code{loop} Construct}
|
|
\label{sec:loop}
|
|
|
|
The following example illustrates the use of the OpenMP 5.0 \code{loop}
|
|
construct for the execution of a loop.
|
|
The \code{loop} construct asserts to the compiler that the iterations
|
|
of the loop are free of data dependencies and may be executed concurrently.
|
|
It allows the compiler to use heuristics to select the parallelization scheme
|
|
and compiler-level optimizations for the concurrency.
|
|
|
|
\cexample[5.0]{loop}{1}
|
|
\ffreeexample[5.0]{loop}{1}
|