@@ -543,18 +543,18 @@ function exchange_impl!(
543543end
544544
545545# This should go eventually into MPI.jl!
546- Issend (data, comm:: MPI.Comm , req:: MPI.AbstractRequest = MPI. Request (); dest:: Integer , tag:: Integer = 0 ) =
546+ Issend (data, comm:: MPI.Comm , req= MPI. Request (); dest:: Integer , tag:: Integer = 0 ) =
547547 Issend (data, dest, tag, comm, req)
548548
549- function Issend (buf:: MPI.Buffer , dest:: Integer , tag:: Integer , comm:: MPI.Comm , req:: MPI.AbstractRequest = MPI. Request ())
549+ function Issend (buf:: MPI.Buffer , dest:: Integer , tag:: Integer , comm:: MPI.Comm , req= MPI. Request ())
550550 @assert MPI. isnull (req)
551551 # int MPI_Issend(const void* buf, int count, MPI_Datatype datatype, int dest,
552552 # int tag, MPI_Comm comm, MPI_Request *request)
553553 MPI. API. MPI_Issend (buf. data, buf. count, buf. datatype, dest, tag, comm, req)
554554 MPI. setbuffer! (req, buf)
555555 return req
556556end
557- Issend (data, dest:: Integer , tag:: Integer , comm:: MPI.Comm , req:: MPI.AbstractRequest = MPI. Request ()) =
557+ Issend (data, dest:: Integer , tag:: Integer , comm:: MPI.Comm , req= MPI. Request ()) =
558558 Issend (MPI. Buffer_send (data), dest, tag, comm, req)
559559
560560
0 commit comments