Block-Structured AMR Software Framework
AMReX_Machine.H
Go to the documentation of this file.
1 #ifndef AMREX_MACHINE_H
2 #define AMREX_MACHINE_H
3 #include <AMReX_Config.H>
4 
5 #include <AMReX_Vector.H>
6 
7 namespace amrex::machine {
8 
9 void Initialize ();
10 
11 #ifdef AMREX_USE_MPI
12 void Finalize ();
17 Vector<int> find_best_nbh (int rank_n, bool flag_local_ranks = false);
18 #endif
19 
20 }
21 
22 #endif
Definition: AMReX_Machine.cpp:581
void Initialize()
called in amrex::Initialize()
Definition: AMReX_Machine.cpp:583
void Finalize()
Definition: AMReX_Machine.cpp:588
Vector< int > find_best_nbh(int rank_n, bool flag_local_ranks)
Definition: AMReX_Machine.cpp:592