You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
which example did you try to run? the error is related to your MPI installation. maybe, make sure first that you can compile and run a simple, parallel program on your system first:
program test
use mpi
implicit none
integer :: myrank,sizeprocs
integer :: i,ier
call MPI_INIT(ier)
call MPI_COMM_RANK(MPI_COMM_WORLD,myrank,ier)
call MPI_COMM_SIZE(MPI_COMM_WORLD,sizeprocs,ier)
do i = 1,sizeprocs
if (myrank + 1 == i) then
print *,'hello from process: ',myrank
endif
call MPI_BARRIER(MPI_COMM_WORLD,ier)
enddo
call MPI_BARRIER(MPI_COMM_WORLD,ier)
call MPI_FINALIZE(ier)
end program
when i run testcase run_this_example.sh,I ran into the following problem:
The text was updated successfully, but these errors were encountered: