WarpX
MPIInitHelpers.H
Go to the documentation of this file.
1 /* Copyright 2020 Axel Huebl
2  *
3  * This file is part of WarpX.
4  *
5  * License: BSD-3-Clause-LBNL
6  */
7 #ifndef WARPX_MPI_INIT_HELPERS_H_
8 #define WARPX_MPI_INIT_HELPERS_H_
9 
10 #include <string>
11 #include <utility>
12 
13 
14 namespace utils
15 {
20  std::pair< int, int >
21  warpx_mpi_init (int argc, char* argv[]);
22 
29  void
30  warpx_check_mpi_thread_level (std::pair< int, int > const mpi_thread_levels);
31 
32 } // namespace utils
33 
34 #endif // WARPX_MPI_INIT_HELPERS_H_
void warpx_check_mpi_thread_level(std::pair< int, int > const mpi_thread_levels)
Definition: MPIInitHelpers.cpp:38
Definition: MPIInitHelpers.cpp:17
std::pair< int, int > warpx_mpi_init(int argc, char *argv[])
Definition: MPIInitHelpers.cpp:20