Sun Studio 12 Update 1: Fortran User's Guide

3.4.52 –loopinfo

Show loop parallelization results.

Show which loops were and were not parallelized with the–autopar option.

–loopinfo displays a list of messages on standard error:


demo% f95 -c -fast -autopar -loopinfo shalow.f
...
"shalow.f", line 172: PARALLELIZED, and serial version generated
"shalow.f", line 173: not parallelized, not profitable
"shalow.f", line 181: PARALLELIZED, fused
"shalow.f", line 182: not parallelized, not profitable
...
...etc