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

allocating more memory

rodolfob
Beginner
399 Views
Hi there!
I am working on Fortran 90 with Developer Studio. The code compiles fine but when runs it uses all of the memory.... this of course after 10 minutes or so!

While debugging the code, the problem arises at an declaration statement:

real, dimension(:,:), allocatable:: dumm

Any idea how to deal with this???... as a practice I am used to dynamic allocation of every array that does not carry important information, is this practice recommended?

Thanks a lot on any comments or ideas!!!
0 Kudos
1 Reply
TimP
Honored Contributor III
399 Views
I would think the first thing is to determine whether you have specified enough stack space, with the
/link /stack:nnnnnnn
or by modifying the .exe after link.
0 Kudos
Reply