1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/* Copyright 2016-2020 Andrew Myers, Ann Almgren, Axel Huebl
* David Grote, Jean-Luc Vay, Remi Lehe
* Revathi Jambunathan, Weiqun Zhang
*
* This file is part of WarpX.
*
* License: BSD-3-Clause-LBNL
*/
#include "WarpX.H"
#include "Utils/WarpXUtil.H"
#include "Utils/WarpXProfilerWrapper.H"
#include <AMReX.H>
#include <AMReX_ParmParse.H>
#include <AMReX_BLProfiler.H>
#include <AMReX_ParallelDescriptor.H>
#include <iostream>
int main(int argc, char* argv[])
{
using namespace amrex;
#if defined(AMREX_USE_MPI)
# if defined(_OPENMP) && defined(WARPX_USE_PSATD)
int provided;
MPI_Init_thread(&argc, &argv, MPI_THREAD_FUNNELED, &provided);
AMREX_ALWAYS_ASSERT(provided >= MPI_THREAD_FUNNELED);
# else
MPI_Init(&argc, &argv);
# endif
#endif
amrex::Initialize(argc,argv);
// in Debug mode, we need a larger stack limit than usual bc of the parser.
#if defined(AMREX_USE_CUDA) && defined(AMREX_DEBUG)
AMREX_CUDA_SAFE_CALL(cudaDeviceSetLimit(cudaLimitStackSize, 20*1024));
#endif
ConvertLabParamsToBoost();
CheckGriddingForRZSpectral();
WARPX_PROFILE_VAR("main()", pmain);
const Real strt_total = amrex::second();
{
WarpX warpx;
warpx.InitData();
warpx.Evolve();
Real end_total = amrex::second() - strt_total;
ParallelDescriptor::ReduceRealMax(end_total, ParallelDescriptor::IOProcessorNumber());
if (warpx.Verbose()) {
amrex::Print() << "Total Time : " << end_total << '\n';
amrex::Print() << "WarpX Version: " << WarpX::Version() << '\n';
amrex::Print() << "PICSAR Version: " << WarpX::PicsarVersion() << '\n';
}
}
WARPX_PROFILE_VAR_STOP(pmain);
amrex::Finalize();
#if defined(AMREX_USE_MPI)
MPI_Finalize();
#endif
}
|