Execution error

Report or discuss software problems and other woes

Moderators: arango, robertson

Post Reply
Message
Author
winlingam

Execution error

#1 Unread post by winlingam »

Hello ROMS users,
I am a new user of ROMS. I would like to set up the ROMS model for
studying Indian Ocean region. We have SUSE linux with Ia-64 bit
architecture SGI Altix cluster and intel fortran compiler (ifort). I have
successfully compiled (with MPI option enabled) the ROMS3.2 code and got
the executable oceanM. When I run this executable, I am encountering
with the following error.

mpirun -np 08 ./oceanM <./ip_new.in > std.out
***********************************************************************************************
MPI: himalaya: 0x3f0f000043a849a9: ctrl_connect/gethostbyaddr: Success
MPI: could not run executable (case #4)
Killed
**********************************************************************************************

Please suggest the solution for resolving this problem.

With Regards,
Maha

User avatar
kate
Posts: 4091
Joined: Wed Jul 02, 2003 5:29 pm
Location: CFOS/UAF, USA

Re: Execution error

#2 Unread post by kate »

winlingam wrote: mpirun -np 08 ./oceanM <./ip_new.in > std.out
Take out the "<" to have

Code: Select all

mpirun -np 08 ./oceanM  ./ip_new.in > std.out
In ROMS, each process wants to read the input file and it can't from stdin, though the serial code can.

Post Reply