diff options
author | 2018-08-10 17:31:25 -0700 | |
---|---|---|
committer | 2018-08-10 17:31:25 -0700 | |
commit | 3d1d1eabb87ae06dd4c96e9be1a4e04151d9098f (patch) | |
tree | 6d09779c79b3306577bdc5f89e7d7777449d6f60 /Source/main.cpp | |
parent | 4a97495cc08c2ab1f07a3357c036c3380506b67c (diff) | |
parent | 3178c53b5a71b3daaedf4272f376bf48fad2bc35 (diff) | |
download | WarpX-3d1d1eabb87ae06dd4c96e9be1a4e04151d9098f.tar.gz WarpX-3d1d1eabb87ae06dd4c96e9be1a4e04151d9098f.tar.zst WarpX-3d1d1eabb87ae06dd4c96e9be1a4e04151d9098f.zip |
Merge branch 'master' of bitbucket.org:berkeleylab/warpx
Diffstat (limited to 'Source/main.cpp')
-rw-r--r-- | Source/main.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/main.cpp b/Source/main.cpp index 757c29e1f..e02294e0b 100644 --- a/Source/main.cpp +++ b/Source/main.cpp @@ -2,10 +2,12 @@ #include <iostream> #include <AMReX.H> +#include <AMReX_ParmParse.H> #include <AMReX_BLProfiler.H> #include <AMReX_ParallelDescriptor.H> #include <WarpX.H> +#include <WarpXUtil.H> using namespace amrex; @@ -21,8 +23,10 @@ int main(int argc, char* argv[]) amrex::Initialize(argc,argv,MPI_COMM_WORLD); - BL_PROFILE_VAR("main()", pmain); + ConvertLabParamsToBoost(); + BL_PROFILE_VAR("main()", pmain); + const Real strt_total = ParallelDescriptor::second(); { |