Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[SMPI] Remove specific encoding of MPI_DATATYPE_NULL
authorChristian Heinrich <franz-christian.heinrich@inria.fr>
Fri, 6 Jul 2018 06:38:56 +0000 (08:38 +0200)
committerChristian Heinrich <franz-christian.heinrich@inria.fr>
Fri, 6 Jul 2018 06:39:58 +0000 (08:39 +0200)
This code is now being treated by MPI_DATATYPE_NULL
being an object.

src/smpi/mpi/smpi_datatype.cpp

index 954dbc9..3c04c85 100644 (file)
@@ -206,9 +206,6 @@ bool Datatype::is_basic()
 
 const char* Datatype::encode(MPI_Datatype dt)
 {
-  if (dt == MPI_DATATYPE_NULL)
-    return "-1";
-
   return dt->id.c_str();
 }