Intel® Moderncode for Parallel Architectures
Support for developing parallel programming applications on Intel® Architecture.

compiler vectorized loop output??

tenhoeve
Beginner
292 Views
I'm using the mpif77 compiler, and I was wondering if there is a flag that would suppress the following output concerning vectorized loops?

gaussfit.f (296) : (col. 3) remark: LOOP WAS VECTORIZED.


Thanks,
John

0 Kudos
1 Reply
TimP
Honored Contributor III
292 Views
mpif77 is only a wrapper which adds MPI library recognition to a Fortran compiler. The option flags of the original compiler remain available. As this looks like an ifort message, mpif77 -help would display a list of command line options. ifort -vec-report0 suppresses vectorization reports; since ifort 10.x, -O1 removes vectorization entirely.
0 Kudos
Reply