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.

Limited by Array expansion limit

van_der_merwe__ben
New Contributor II
786 Views
If you look at a large Fortran array in Visual Studio 2500 (quick watch), it only shows the first 1000 elements and at the bottom you see:

THEDATA(43,9) Fortran array expansion limited to 1000 nodes

Is there a way to turn that off or overcome it? 1000 is not that much anymore these days.

Is there a workaround perhaps? I know if this was a C++ array you could do something like: THEDATA+500,100 which would show you the 100 entries starting at the 500th one. I have tried tricking it into letting me see the rest of the array but Fortran seems to have very limited flexibility in terms of what you can evaluate.

I also do not see anything under Tools, Options for turning this off?

Thank you kindly.
0 Kudos
2 Replies
Steven_L_Intel1
Employee
786 Views
You can explicitly specify the elements you want to view, such as ARRAY(1:5000). I'm pretty sure that works and that it's only when you click the + next to a whole array that you get this limit.
0 Kudos
jimdempseyatthecove
Honored Contributor III
786 Views

Start further down in the array

THEDATA( 43: , : )

Jim Dempsey

0 Kudos
Reply