diff options
author | 2020-09-14 11:24:15 -0700 | |
---|---|---|
committer | 2020-09-14 11:24:15 -0700 | |
commit | 15ede66769e86a2d425714fee0bf1c75a870460d (patch) | |
tree | 735d8605619b3e97eb202b0c6cd32b4795500af0 /Source/Particles/PhysicalParticleContainer.cpp | |
parent | 4bf06e303c05505511c82d280907d9abf3464e67 (diff) | |
download | WarpX-15ede66769e86a2d425714fee0bf1c75a870460d.tar.gz WarpX-15ede66769e86a2d425714fee0bf1c75a870460d.tar.zst WarpX-15ede66769e86a2d425714fee0bf1c75a870460d.zip |
Clean up profiling labels (#1320)
Diffstat (limited to 'Source/Particles/PhysicalParticleContainer.cpp')
-rw-r--r-- | Source/Particles/PhysicalParticleContainer.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/Particles/PhysicalParticleContainer.cpp b/Source/Particles/PhysicalParticleContainer.cpp index 8b7646997..68900463b 100644 --- a/Source/Particles/PhysicalParticleContainer.cpp +++ b/Source/Particles/PhysicalParticleContainer.cpp @@ -524,7 +524,7 @@ PhysicalParticleContainer::AddParticles (int lev) void PhysicalParticleContainer::AddPlasma (int lev, RealBox part_realbox) { - WARPX_PROFILE("PhysicalParticleContainer::AddPlasma"); + WARPX_PROFILE("PhysicalParticleContainer::AddPlasma()"); // If no part_realbox is provided, initialize particles in the whole domain const Geometry& geom = Geom(lev); @@ -933,8 +933,8 @@ PhysicalParticleContainer::Evolve (int lev, Real /*t*/, Real dt, DtType a_dt_type) { - WARPX_PROFILE("PPC::Evolve()"); - WARPX_PROFILE_VAR_NS("PPC::GatherAndPush", blp_fg); + WARPX_PROFILE("PhysicalParticleContainer::Evolve()"); + WARPX_PROFILE_VAR_NS("PhysicalParticleContainer::Evolve::GatherAndPush", blp_fg); BL_ASSERT(OnSameGrids(lev,jx)); @@ -1410,7 +1410,7 @@ PhysicalParticleContainer::PushP (int lev, Real dt, const MultiFab& Ex, const MultiFab& Ey, const MultiFab& Ez, const MultiFab& Bx, const MultiFab& By, const MultiFab& Bz) { - WARPX_PROFILE("PhysicalParticleContainer::PushP"); + WARPX_PROFILE("PhysicalParticleContainer::PushP()"); if (do_not_push) return; @@ -1544,7 +1544,7 @@ PhysicalParticleContainer::GetParticleSlice ( const Real t_lab, const Real dt, DiagnosticParticles& diagnostic_particles) { - WARPX_PROFILE("PhysicalParticleContainer::GetParticleSlice"); + WARPX_PROFILE("PhysicalParticleContainer::GetParticleSlice()"); // Assume that the boost in the positive z direction. #if (AMREX_SPACEDIM == 2) @@ -1985,7 +1985,7 @@ PhysicalParticleContainer::getIonizationFunc (const WarpXParIter& pti, const amrex::FArrayBox& By, const amrex::FArrayBox& Bz) { - WARPX_PROFILE("PPC::getIonizationFunc"); + WARPX_PROFILE("PhysicalParticleContainer::getIonizationFunc()"); return IonizationFilterFunc(pti, lev, ngE, Ex, Ey, Ez, Bx, By, Bz, v_galilean, @@ -2045,14 +2045,14 @@ set_quantum_sync_engine_ptr (std::shared_ptr<QuantumSynchrotronEngine> ptr) PhotonEmissionFilterFunc PhysicalParticleContainer::getPhotonEmissionFilterFunc () { - WARPX_PROFILE("PPC::getPhotonEmissionFunc"); + WARPX_PROFILE("PhysicalParticleContainer::getPhotonEmissionFunc()"); return PhotonEmissionFilterFunc{particle_runtime_comps["optical_depth_QSR"]}; } PairGenerationFilterFunc PhysicalParticleContainer::getPairGenerationFilterFunc () { - WARPX_PROFILE("PPC::getPairGenerationFunc"); + WARPX_PROFILE("PhysicalParticleContainer::getPairGenerationFunc()"); return PairGenerationFilterFunc{particle_runtime_comps["optical_depth_BW"]}; } |