Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
29285 Discussions

Fujitsu Visual Analyzer (Graph Flow)

Ahmad_Falahatpisheh
721 Views
Hi all,

Can Intel Visual Fortran make a graph flow of the source code like the following picture to show the connectivity of the subroutines in the source code? Lahey has several programs which facilitate debugging and understanding the code better like Fujitsu Visual Analyzer. Does Intel Visual Fortran have similiar programs?

37564-va_scr1.gif
0 Kudos
1 Solution
Arjen_Markus
Honored Contributor II
721 Views
A tool like doxygen createsa browseable version of your source code, including call graphs.
The advantage is that it does not produce a single graph for the wholeprogram, though the graphs
can get large and complex (especially for auxiliary routines that you use everywhere)

Regards,

Arjen

View solution in original post

0 Kudos
2 Replies
Steven_L_Intel1
Employee
721 Views
Not at this time, though information about calls/called-by is available. I have used such visual tools in the past (DEC Source Code Analyzer) and found that while they look nice for small and simple programs, where you don't need such tools, they fail miserably, creating dense, unusable graphs, for large and complex programs where you might.
0 Kudos
Arjen_Markus
Honored Contributor II
722 Views
A tool like doxygen createsa browseable version of your source code, including call graphs.
The advantage is that it does not produce a single graph for the wholeprogram, though the graphs
can get large and complex (especially for auxiliary routines that you use everywhere)

Regards,

Arjen
0 Kudos
Reply