Hello everyone,
I compiled v8p5 and tried to run gouttedo and API examples they are working well in sequential without any error. But when I'm trying to run them in a parallel
mpirun -n 4 telemac2d.py t2d_gouttedo.cas
I got an error shown in the run.txt file.
Note that when I use
telemac2d.py t2d_gouttedo.cas --ncise=4
it runs well showing the following
DIFFERENT NUMBER OF PARALLEL PROCESSORS:
DECLARED BEFORE (CASE OF COUPLING ?): 4
TELEMAC-2D : 0
VALUE 4 IS KEPT
but it didn't work when I tried to use the api example
DIFFERENT NUMBER OF PARALLEL PROCESSORS:
DECLARED BEFORE (CASE OF COUPLING ?): 1
TELEMAC-2D : 0
VALUE 1 IS KEPT
I also got no error when tested the mpi with the a simple example:
from mpi4py import MPI
gbl_comm = MPI.COMM_WORLD
gbl_rank = gbl_comm.Get_rank()
gbl_ncsize = gbl_comm.Get_size()
print (gbl_ncsize)
I attached the configuration file.
I attached another API example that I cannot run, as it should use 2 cores as a minimum (telenkf_t2d_estimation.py)
I checked the previous forum posts but unfortunately, I couldn't find a similar error.
Can you advise, please?
Thank you.
Mohamed