Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move the implem of a function out of the header to reduce issues
[simgrid.git] / src / smpi / bindings / smpi_mpi.cpp
index 833d761..3bd52c7 100644 (file)
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_mpi, smpi, "Logging specific to SMPI ,(mpi)");
 
+void MPI_Init()
+{
+  MPI_Init(nullptr, nullptr);
+}
+
 #define NOT_YET_IMPLEMENTED                                                                                            \
   {                                                                                                                    \
     xbt_die("Not yet implemented: %s. Please contact the SimGrid team if support is needed", __func__);                \