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.
29283 Discussions

Help Required, Can't Intrepret Error

naveed_ahmed
Beginner
462 Views
Kindly help me in understanding this error, what could be the possible cause?

%FOR-E-ADJARRDIM, adjustable array dimension error
%TRACE-E-TRACEBACK, symbolic stack dump follows

It is occuring at line 173, a subroutine call.

Thanks
Naveed
0 Kudos
1 Reply
james1
Beginner
462 Views
It basically means the dimensions on the subroutine's adjustable array doesn't makes sense, for example if you

integer array(10), size
call sub (array, size)

and sub is declared as

subroutine sub (array, size)
integer array(size), size
...

If you do something like set size to zero or something huge you might see this error.

James
0 Kudos
Reply