
This recommendation is part of the open catalog of best practice rules for performance that is automatically detected and reported by Codee.
Issue
The loop containing a forall
pattern can be made faster by using vectorization.
Actions
Implement a version of the forall loop using an Application Program Interface (API) that enables vectorization. Codee assists the programmer by providing source code rewriting capabilities using compiler directives provided by OpenMP standard, GNU compiler, LLVM compiler and Intel compiler.
Relevance
Vectorizing a loop is one of the ways to speed it up. Vectorization is widely used in modern computers, but writing vectorized code is not straightforward. Essentially, the programmer must explicitly specify how to execute the loop in vector mode on the hardware, as well as add the appropriate synchronization to avoid race conditions at runtime. Typically, the compiler does a good job in vectorization, so the biggest challenge is to vectorize loops manually beyond the capabilities of the compiler.
Note
Vectorizing forall loops typically incurs less overhead than vectorizing scalar reduction loops. The main reason is that no synchronization is needed to avoid race conditions and ensure the correctness of the code. Note appropriate data scoping of shared and private variables is still a must.
Code examples
Have a look at the following code snippet:
void example(double *D, double *X, double *Y, int n, double a) {
for (int i = 0; i < n; ++i) {
D[i] = a * X[i] + Y[i];
}
}
The loop body has a forall
pattern, meaning that each iteration of the loop can be executed independently and the result in each iteration is written to an independent memory location. Thus, no race conditions can appear at runtime related to array D
, so no specific synchronization is needed.
The code snippet below shows an implementation that uses the OpenMP compiler directives to vectorize the loop explicitly. Note the synchronization added to avoid race conditions.
void example(double *D, double *X, double *Y, int n, double a) {
#pragma omp simd
for (int i = 0; i < n; ++i) {
D[i] = a * X[i] + Y[i];
}
}
Related resources
References

Building performance into the code from day one with Codee