Hi everyone!
Just a simple question on fortran/LAM-MPI interaction. I intend to call
MPI routines using arrays, that are part of a structure, i.e.
call MPI_RECV(Node(np)%rec,count(np),MPI_DOUBLE_PRECISION,np-1,np
& ,MPI_COMM_WORLD,status,ierr)
Would this require anything else (such as fortran 90 bindings or the
like) than a standard f77 style call ?:
call MPI_RECV(rec,count,MPI_DOUBLE_PRECISION,np-1,np
& ,MPI_COMM_WORLD,status,ierr)
Best regards, Jess Michelsen
|