- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
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.
링크가 복사됨
4 응답
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
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.
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.
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
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.
