Tells the compiler to attempt to generate multithreaded code for DO CONCURRENT loops.
Linux: | -parallel |
Windows: | /Qparallel(or /Qpar) |
None
OFF |
Multithreaded code is not generated for loops that can be safely executed in parallel |
This option tells the compiler to attempt to generate multithreaded code for DO CONCURRENT loops.
To attempt to create a multithreaded parallel version of the loop, the compiler will insert an OpenMP* PARALLEL DO directive before each DO CONCURRENT loop.
To use this option, you must also specify option O2 or O3.
None