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

Warning (528): IEEE_Underflow is signaling

MrRocketman
Beginner
1,339 Views

How can I prevent the pop up message window "Warning (528): IEEE_Underflow is signaling"? I am using IVF 14.0.3, IMSL 7.0.1, compiler settings fpe:0, and using the MKL libs option. The main program USES imsl_v7 which is just

module imsl_v7

include 'link_fnl_static.h'

end module imsl_v7

The program runs fine but I get the message at the end which I don't want.

0 Kudos
3 Replies
Steven_L_Intel1
Employee
1,339 Views

Are you compiling with /standard-semantics ("Enable Fortran 2003 semantics")? If so, you'll get this message. To turn it off, add:

/assume:nofpe_summary

under Fortran > Command Line > Additional Options

0 Kudos
MrRocketman
Beginner
1,339 Views

That worked.

Thanks Steve L.

0 Kudos
Steven_L_Intel1
Employee
1,339 Views

Great. By the way, please go to your Dashboard (click on your user ID in the upper right corner and select Dashboard), then go to Profile and select a "Display Name" that isn't your email address. This will prevent your email address from showing here in the forum.

0 Kudos
Reply