]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Small refactoring. rnv/native_openmpi_centos8
authorrnv <rnv@opencascade.com>
Tue, 4 Aug 2020 09:27:57 +0000 (12:27 +0300)
committerrnv <rnv@opencascade.com>
Tue, 4 Aug 2020 09:27:57 +0000 (12:27 +0300)
src/ParaMEDMEMTest/MPI2Connector.cxx

index ef55de0f815bf75dc89a2b7bb0ee8d9741b743d6..87b16bfb24419b64d54e43f132831ec307c57f70 100644 (file)
 #include <unistd.h>
 #endif
 
+#if OMPI_MAJOR_VERSION >= 4
+#define MPI_ERROR_HANDLER(var) MPI_Comm_set_errhandler(MPI_COMM_WORLD, var);
+#else
+#define MPI_ERROR_HANDLER(var) MPI_Errhandler_set(MPI_COMM_WORLD, var);
+#endif
+
 MPI2Connector::MPI2Connector()
 {
   MPI_Comm_size( MPI_COMM_WORLD, &_nb_proc );
@@ -54,11 +60,7 @@ MPI_Comm MPI2Connector::remoteMPI2Connect(const std::string& service)
   _srv = false;
 
   MPI_Barrier(MPI_COMM_WORLD);
-#if OMPI_MAJOR_VERSION >= 4
-  MPI_Comm_set_errhandler(MPI_COMM_WORLD, MPI_ERRORS_RETURN);
-#else
-  MPI_Errhandler_set(MPI_COMM_WORLD, MPI_ERRORS_RETURN);
-#endif
+  MPI_ERROR_HANDLER(MPI_ERRORS_RETURN);
   if( _num_proc == 0 )
     { 
       /* rank 0 try to be a server. If service is already published, try to be a cient */
@@ -107,11 +109,7 @@ MPI_Comm MPI2Connector::remoteMPI2Connect(const std::string& service)
           throw std::exception();
         }
     }
-#if OMPI_MAJOR_VERSION >= 4
-  MPI_Comm_set_errhandler(MPI_COMM_WORLD, MPI_ERRORS_ARE_FATAL);
-#else
-  MPI_Errhandler_set(MPI_COMM_WORLD, MPI_ERRORS_ARE_FATAL);
-#endif
+  MPI_ERROR_HANDLER(MPI_ERRORS_ARE_FATAL);
   
   /* If rank 0 is server, all processes call MPI_Comm_accept */
   /* If rank 0 is not server, all processes call MPI_Comm_connect */