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 <utility>
11 
12 namespace utils
13 {
18  std::pair< int, int >
19  warpx_mpi_init (int argc, char* argv[]);
20 
27  void
28  warpx_check_mpi_thread_level (std::pair< int, int > const mpi_thread_levels);
29 
30 } // namespace utils
31 
32 #endif // WARPX_MPI_INIT_HELPERS_H_
void warpx_check_mpi_thread_level(std::pair< int, int > const mpi_thread_levels)
Definition: MPIInitHelpers.cpp:43
Definition: MPIInitHelpers.cpp:20
std::pair< int, int > warpx_mpi_init(int argc, char *argv[])
Definition: MPIInitHelpers.cpp:23