The following error is obtained when I run the code via parallel processing:
Abort(1) on node 25 (rank 25 in comm 0): application called MPI_Abort(MPI_COMM_WORLD, 1) - process 25
I use the intel compiler in F90, with the following intel flags while compiling to debug: -g -traceback -check bounds
.
If I run the code directly in one processor, then the flags print the issue that is causing my code to terminate. But when I use mpirun or mpiexec to run the same code in parallel, the flags don't print anything. My code terminates itself only at times and after long run times.
I would like to know what can be done to see print the flags output while using mpirun or mpiexec.
I want to print the flag outputs of -g -traceback -check
outputs of an error while running the code in mpi.