aboutsummaryrefslogtreecommitdiff
path: root/Source/Particles/WarpXParticleContainer.cpp
diff options
context:
space:
mode:
authorGravatar Edoardo Zoni <59625522+EZoni@users.noreply.github.com> 2020-09-14 11:24:15 -0700
committerGravatar GitHub <noreply@github.com> 2020-09-14 11:24:15 -0700
commit15ede66769e86a2d425714fee0bf1c75a870460d (patch)
tree735d8605619b3e97eb202b0c6cd32b4795500af0 /Source/Particles/WarpXParticleContainer.cpp
parent4bf06e303c05505511c82d280907d9abf3464e67 (diff)
downloadWarpX-15ede66769e86a2d425714fee0bf1c75a870460d.tar.gz
WarpX-15ede66769e86a2d425714fee0bf1c75a870460d.tar.zst
WarpX-15ede66769e86a2d425714fee0bf1c75a870460d.zip
Clean up profiling labels (#1320)
Diffstat (limited to 'Source/Particles/WarpXParticleContainer.cpp')
-rw-r--r--Source/Particles/WarpXParticleContainer.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/Source/Particles/WarpXParticleContainer.cpp b/Source/Particles/WarpXParticleContainer.cpp
index 5ca18bebe..44ebde7af 100644
--- a/Source/Particles/WarpXParticleContainer.cpp
+++ b/Source/Particles/WarpXParticleContainer.cpp
@@ -238,9 +238,8 @@ WarpXParticleContainer::DepositCurrent(WarpXParIter& pti,
const std::array<Real,3>& dx = WarpX::CellSize(std::max(depos_lev,0));
Real q = this->charge;
- WARPX_PROFILE_VAR_NS("PPC::Evolve::Accumulate", blp_accumulate);
- WARPX_PROFILE_VAR_NS("PPC::CurrentDeposition", blp_deposit);
-
+ WARPX_PROFILE_VAR_NS("WarpXParticleContainer::DepositCurrent::CurrentDeposition", blp_deposit);
+ WARPX_PROFILE_VAR_NS("WarpXParticleContainer::DepositCurrent::Accumulate", blp_accumulate);
// Get tile box where current is deposited.
// The tile box is different when depositing in the buffers (depos_lev<lev)
@@ -431,8 +430,8 @@ WarpXParticleContainer::DepositCharge (WarpXParIter& pti, RealVector& wp,
const std::array<Real,3>& dx = WarpX::CellSize(std::max(depos_lev,0));
const Real q = this->charge;
- WARPX_PROFILE_VAR_NS("PPC::ChargeDeposition", blp_ppc_chd);
- WARPX_PROFILE_VAR_NS("PPC::Evolve::Accumulate", blp_accumulate);
+ WARPX_PROFILE_VAR_NS("WarpXParticleContainer::DepositCharge::ChargeDeposition", blp_ppc_chd);
+ WARPX_PROFILE_VAR_NS("WarpXParticleContainer::DepositCharge::Accumulate", blp_accumulate);
// Get tile box where charge is deposited.
// The tile box is different when depositing in the buffers (depos_lev<lev)
@@ -788,7 +787,7 @@ WarpXParticleContainer::PushX (amrex::Real dt)
void
WarpXParticleContainer::PushX (int lev, amrex::Real dt)
{
- WARPX_PROFILE("WPC::PushX()");
+ WARPX_PROFILE("WarpXParticleContainer::PushX()");
if (do_not_push) return;