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

Fortran Compiler

garraleta_fortran
439 Views

I have installed two versions of INTEL FORTRAN
a) Intel Parallel Studio XE-2013 in VISUAL STUDIO 2008
b) The new IFX in VISUAL STUDIO 2022
Both work well. But there are subtle differences in debug.

Here is a small example

In 2008 The sequence of instructions is step by step starting on line 7:
7-8-9-10-11-12-13-9-10-11-12-13-14
In te new IFX is:
7-8-9-10-11-12-9-12-13-9-10-11-12-9-12-13DEBUG.jpg

Labels (1)
0 Kudos
1 Solution
Steve_Lionel
Honored Contributor III
433 Views

Instruction to line number correlation has always been approximate. The compiler may choose to reorder some operations. Since END DO is not executable, where it shows up in debugging is unpredictable.

View solution in original post

0 Kudos
1 Reply
Steve_Lionel
Honored Contributor III
434 Views

Instruction to line number correlation has always been approximate. The compiler may choose to reorder some operations. Since END DO is not executable, where it shows up in debugging is unpredictable.

0 Kudos
Reply