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

(no)fltconsistency compilre option - where in DevEnv ?

ferrad01
Beginner
540 Views
The help says:

fltconsistency

"Enables improved floating-point consistency.

IDE Equivalent

Windows: Floating-Point > Floating-Point Consistency "



But this option does not exist in the Floating Point Property Page - we are using VC2008 / Intel 11.1

Is this deprecated ?
0 Kudos
2 Replies
Steven_L_Intel1
Employee
540 Views
That option is no longer a property. I suggest using Floating Point Model > Source as an alternative. You can specify /fltconsistency under Command Line if you wish.
0 Kudos
TimP
Honored Contributor III
540 Views
Yes, the /fltconsistency option has been replaced by the /fp options, the most commonly used for such purpose being /fp:source. If you depend on implicit double precision evaluation of single precision expressions, you must either specify it in the source code, or set (32-bit) option /arch:IA32.
0 Kudos
Reply