Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
공지
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.

Confused by such error message

lorinsz
초급자
1,294 조회수

I'm developing a programe solving large-scale matrix equation using frontal-solver algorithm.(Ax = b)

After compiling and linking (they are both OK), I excuted the programe and got following message:

------------------------------------------------------------------

forrtl: severe (41): insufficient virtual memory

*********************************(some other message)

Incrementally linked image--PC correlation disabled.

--------------------------------------------------------------------

so what's the meaning? Could someone tell me that?

Thx~~~~~

"Insufficient virtual memory": I donot think my programe need too much memory, since the matrix I input is not very large, just 900-by-900.

0 포인트
4 응답
Steven_L_Intel1
1,294 조회수
It does indeed mean that your program uses "too much memory". You're using CVF, right?

Add at the end of your compile command

/traceback /link /incremental:no

and it should tell you at what line the error occurred. That may help you figure out the problem.
0 포인트
lorinsz
초급자
1,294 조회수

Thanks for you reply. Yes, I'm using CVF 6.6, so do you mean I have to use the command prompt to compile and link the program? Using DF ... ?

0 포인트
Steven_L_Intel1
1,294 조회수
No - if you're using the IDE, just build in a debug configuration, run under the debugger and see where it stops. It's probably on an ALLOCATE but it might be somewhere else.
0 포인트
lorinsz
초급자
1,294 조회수

Great!

I've found the error now, it's really about ALLOCATE.

thx Steve.

0 포인트
응답