Hi,
I want to couple ROMS and SWAN, so I download openmpi and MCT. I compile build.bash with the follow command:
./build.bash -j 2
and I obtain my executable oceanM.
Then I type mpirun -np 2 ./oceanM coupling_test_head > out.log with:
Nthreads(ocean) = 1
Nthreads(waves) = 1 in coupling_test_head.in
and I have:
Coupled Input File name = coupling_test_head.in
MOD_COUPLER - Number assigned processors: 001
not equal to spawned MPI nodes: 001
Coupled Input File name = coupling_test_head.in
MOD_COUPLER - Number assigned processors: 001
not equal to spawned MPI nodes: 001
So I try with
Nthreads(ocean) = 1
Nthreads(waves) = 0
and I obtain: (attach file: out.log), but nothing happens.
I don't know why it doesn't work, so if someone can help me please?
Antoine
mpirun problem
-
- Posts: 60
- Joined: Tue Sep 29, 2009 3:50 pm
- Location: School of Environment System Engineering,UWA
Re: mpirun problem
I used to have the similar problem. You might not install the openmpi in the right way. I use mpich2, so not sure whether it is the same.
Re: mpirun problem
Yes, here I use openmpi, but before, I have used mpich2, and I have exactly the same error.
I had tried to use mpich2, but when I had configured it, the command '--with-device=ch3:shm' didn't work.
So I had configured without this command. Then I had installed MCT.
With openmpi, I have configured MCT with the following command:
./configure FC=mpif90 CC=mpicc
Is it correct?
I had tried to use mpich2, but when I had configured it, the command '--with-device=ch3:shm' didn't work.
So I had configured without this command. Then I had installed MCT.
With openmpi, I have configured MCT with the following command:
./configure FC=mpif90 CC=mpicc
Is it correct?
Re: mpirun problem
One possible explanation, that you need to check, is that the mpif90 and mpirun/mpiexec do not come from the same origin.
Re: mpirun problem
I have checked, and mpirun and mpif90 come from the same origin. I try to use mpich2, so I configure MCT with:
./configure F90=gfortran FC=mpif90.mpich2 CC=mpicc.mpich2
and now I have the following error:
antoine@antoine-VirtualBox:~/roms/Projects/swan_test_head$ mpirun.mpich2 -np 2 ./oceanM coupling_test_head.in
....
WEST_FSCLAMPED Western edge, free-surface, Clamped condition.
WEST_M2REDUCED Western edge, 2D momentum, reduced-physics condition.
WEST_M3RADIATION Western edge, 3D momentum, radiation condition.
WEST_TGRADIENT Western edge, tracers, gradient condition.
WET_DRY Wetting and drying activated.
Process Information:
Node # 0 (pid= 26691) is active.
SWAN is preparing computation ...
application called MPI_Abort(comm=0x84000002, 4) - process 0
APPLICATION TERMINATED WITH THE EXIT STRING: Hangup (signal 1)
I don't know why, I think my build.bash (attach file) is correct?
./configure F90=gfortran FC=mpif90.mpich2 CC=mpicc.mpich2
and now I have the following error:
antoine@antoine-VirtualBox:~/roms/Projects/swan_test_head$ mpirun.mpich2 -np 2 ./oceanM coupling_test_head.in
....
WEST_FSCLAMPED Western edge, free-surface, Clamped condition.
WEST_M2REDUCED Western edge, 2D momentum, reduced-physics condition.
WEST_M3RADIATION Western edge, 3D momentum, radiation condition.
WEST_TGRADIENT Western edge, tracers, gradient condition.
WET_DRY Wetting and drying activated.
Process Information:
Node # 0 (pid= 26691) is active.
SWAN is preparing computation ...
application called MPI_Abort(comm=0x84000002, 4) - process 0
APPLICATION TERMINATED WITH THE EXIT STRING: Hangup (signal 1)
I don't know why, I think my build.bash (attach file) is correct?
- Attachments
-
- build.bash
- (16.74 KiB) Downloaded 344 times
-
- Posts: 60
- Joined: Tue Sep 29, 2009 3:50 pm
- Location: School of Environment System Engineering,UWA
Re: mpirun problem
Try mpiexec command see whether it works. As if you use shared memory machine and use the gforker manager, the mpirun command might not work.
Re: mpirun problem
I think the problem is now probably in SWAN. Look after the Errfile* for the problem.
Re: mpirun problem
It works!!
For the last error, it was just the path of grid file which were wrong.
Thanks a lot Simion and Mathieu.
Antoine
For the last error, it was just the path of grid file which were wrong.
Thanks a lot Simion and Mathieu.
Antoine