Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix doubled semicolons.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 27 Nov 2019 08:46:51 +0000 (09:46 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 28 Nov 2019 14:29:40 +0000 (15:29 +0100)
src/smpi/bindings/smpi_pmpi_coll.cpp
teshsuite/smpi/mpich3-test/comm/comm_idup_iallreduce.c

index e4a6076..2a0a745 100644 (file)
@@ -544,7 +544,7 @@ int PMPI_Iscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datat
   smpi_bench_end();
   int rank         = simgrid::s4u::this_actor::get_pid();
   std::unique_ptr<unsigned char[]> tmp_sendbuf;
-  const void* real_sendbuf = smpi_get_in_place_buf(sendbuf, recvbuf, tmp_sendbuf, count, datatype);;
+  const void* real_sendbuf = smpi_get_in_place_buf(sendbuf, recvbuf, tmp_sendbuf, count, datatype);
 
   TRACE_smpi_comm_in(rank, request == MPI_REQUEST_IGNORED ? "PMPI_Scan" : "PMPI_Iscan",
                      new simgrid::instr::Pt2PtTIData(request == MPI_REQUEST_IGNORED ? "scan" : "iscan", -1,
@@ -584,7 +584,7 @@ int PMPI_Iexscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype dat
   smpi_bench_end();
   int rank         = simgrid::s4u::this_actor::get_pid();
   std::unique_ptr<unsigned char[]> tmp_sendbuf;
-  const void* real_sendbuf = smpi_get_in_place_buf(sendbuf, recvbuf, tmp_sendbuf, count, datatype);;
+  const void* real_sendbuf = smpi_get_in_place_buf(sendbuf, recvbuf, tmp_sendbuf, count, datatype);
 
   TRACE_smpi_comm_in(rank, request == MPI_REQUEST_IGNORED ? "PMPI_Exscan" : "PMPI_Iexscan",
                      new simgrid::instr::Pt2PtTIData(request == MPI_REQUEST_IGNORED ? "exscan" : "iexscan", -1,
@@ -638,7 +638,7 @@ int PMPI_Ireduce_scatter(const void *sendbuf, void *recvbuf, const int *recvcoun
     totalcount += recvcounts[i];
   }
   std::unique_ptr<unsigned char[]> tmp_sendbuf;
-  const void* real_sendbuf = smpi_get_in_place_buf(sendbuf, recvbuf, tmp_sendbuf, totalcount, datatype);;
+  const void* real_sendbuf = smpi_get_in_place_buf(sendbuf, recvbuf, tmp_sendbuf, totalcount, datatype);
 
   TRACE_smpi_comm_in(rank, request == MPI_REQUEST_IGNORED ? "PMPI_Reduce_scatter" : "PMPI_Ireduce_scatter",
                      new simgrid::instr::VarCollTIData(
index 46be1e9..b507a9b 100644 (file)
@@ -113,7 +113,7 @@ int main(int argc, char **argv)
     }
     /* Test Iallreduce */
     if (sol != out)
-        errs++;;
+        errs++;
 
     /* Test new communicator */
     errs += MTestTestComm(newcomm);
@@ -132,7 +132,7 @@ int main(int argc, char **argv)
     }
     /* Test Iallreduce */
     if (sol != out)
-        errs++;;
+        errs++;
 
     /* Test new communicator */
     errs += MTestTestComm(newcomm);
@@ -149,7 +149,7 @@ int main(int argc, char **argv)
 
 
     if (sol != out)
-        errs++;;
+        errs++;
     /* Test new inter communicator */
     errs += MTestTestComm(newcomm);
     MPI_Comm_free(&newcomm);
@@ -167,7 +167,7 @@ int main(int argc, char **argv)
     }
     /* Test Iallreduce resutls for split-communicator */
     if (sol != out)
-        errs++;;
+        errs++;
     /* Test new inter-communicator */
 
     errs += MTestTestComm(newcomm);
@@ -190,7 +190,7 @@ int main(int argc, char **argv)
 
 
     if (sol != out)
-        errs++;;
+        errs++;
     /* Test new communicator */
     errs += MTestTestComm(newcomm);
     MPI_Comm_free(&newcomm);