Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Remove -ipo remark messages?

Henrik_S_
Beginner
540 Views

The Intel compiler lets me specify -nologo & -vec-report0 to supress many messages, but I cannot find a way to suppress the -ipo "remark" message. Is there a way?

- Henrik

0 Kudos
3 Replies
Kevin_D_Intel
Employee
540 Views

Add the option: -diag-disable ipo to remove all IPO messages, including remarks.

Alternatively, to remove only remarks from all compilation phases use: -diag-disable remark

0 Kudos
Henrik_S_
Beginner
540 Views

Add the option: -diag-disable to remove all IPO messages, including remarks.

Alternatively, to remove only remarks from all compilation phases use: -diag-disable remark

Thanks! Works great. I could not find this info when examing the IPO documentation. Perhaps in the future a mention of this could be made in the IPO section of the documentation?


Thanks again.

0 Kudos
Kevin_D_Intel
Employee
540 Views
Quoting - henrikk
Perhaps in the future a mention of this could be made in the IPO section of the documentation?
Yes, we will look at improving the documentation of this. The ipo diagnostic group is also not listed in the discussionof the-diag option.
0 Kudos
Reply