Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
some requests were not tagged correctly
authorAugustin Degomme <degomme@idpann.imag.fr>
Wed, 18 Sep 2013 09:26:23 +0000 (11:26 +0200)
committerAugustin Degomme <degomme@idpann.imag.fr>
Wed, 18 Sep 2013 14:12:37 +0000 (16:12 +0200)
src/smpi/smpi_base.c

index 8bb78e1..517cb9c 100644 (file)
@@ -444,7 +444,7 @@ MPI_Request smpi_isend_init(void *buf, int count, MPI_Datatype datatype,
 {
   MPI_Request request =
     build_request(buf==MPI_BOTTOM ? (void*)0 : buf , count, datatype, smpi_process_index(), smpi_group_index(smpi_comm_group(comm), dst), tag,
-                  comm, NON_PERSISTENT | SEND | PREPARED);
+                  comm, NON_PERSISTENT | ISEND | SEND | PREPARED);
 
   return request;
 }