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

Intel FORTRAN running on Linux---runtime error

hyv
Beginner
797 Views

Hello,

Running a working code on a Linux machine with Intel's 10.1 FORTRAN compiler, I recieved this error during execussion:


1 Exit code -5 signaled from i171-212.ranger.tacc.utexas.edu

2 Killing remote processes...MPI process terminated unexpectedly

3 DONE

4 forrtl: No such file or directory

Is there a runtime library that may be missing?

Any thoughts on how to address this?

Thank you,

Hezky

0 Kudos
5 Replies
Ron_Green
Moderator
797 Views

try compiling with -static-intel -heap-arrays

If you have a pbs script that launches your run, make sure the script has a line to 'source /ifortvars.sh' (this for a bash script). Often times the job launcher won't carry the env vars for the child processes.

But the -static-intel should be a big help, it statically links in the Intel Fortran runtime libs.

ron

0 Kudos
roddur
Beginner
797 Views
Are you running the job straight where there exist a job-schedular? Then there may also be some script that may kill your job after some time.
0 Kudos
hyv
Beginner
797 Views

Yes, I am running through a job scheduler, and I have as my FORTRAN optimization flag set as:

foptflags = -mcmodel=medium -shared-intel

0 Kudos
TimP
Honored Contributor III
797 Views
Either a limit set by the administrators for the queue, or a limit you are required to specify.
0 Kudos
Ron_Green
Moderator
797 Views
Looks like your code is not using OpenMP, so add -heap-arrays to your compiler options
0 Kudos
Reply