diff options
author | 2020-09-14 11:24:15 -0700 | |
---|---|---|
committer | 2020-09-14 11:24:15 -0700 | |
commit | 15ede66769e86a2d425714fee0bf1c75a870460d (patch) | |
tree | 735d8605619b3e97eb202b0c6cd32b4795500af0 /Source/Parallelization/WarpXComm.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/Parallelization/WarpXComm.cpp')
-rw-r--r-- | Source/Parallelization/WarpXComm.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Parallelization/WarpXComm.cpp b/Source/Parallelization/WarpXComm.cpp index 79bcce2f4..ac619a937 100644 --- a/Source/Parallelization/WarpXComm.cpp +++ b/Source/Parallelization/WarpXComm.cpp @@ -57,7 +57,7 @@ WarpX::ExchangeWithPmlF (int lev) void WarpX::UpdateAuxilaryData () { - WARPX_PROFILE("UpdateAuxilaryData()"); + WARPX_PROFILE("WarpX::UpdateAuxilaryData()"); if (Bfield_aux[0][0]->ixType() == Bfield_fp[0][0]->ixType()) { UpdateAuxilaryDataSameType(); @@ -673,7 +673,7 @@ WarpX::FillBoundaryAux (int lev, IntVect ng) void WarpX::SyncCurrent () { - WARPX_PROFILE("SyncCurrent()"); + WARPX_PROFILE("WarpX::SyncCurrent()"); // Restrict fine patch current onto the coarse patch, before // summing the guard cells of the fine patch @@ -708,7 +708,7 @@ WarpX::SyncCurrent () void WarpX::SyncRho () { - WARPX_PROFILE("SyncRho()"); + WARPX_PROFILE("WarpX::SyncRho()"); if (!rho_fp[0]) return; const int ncomp = rho_fp[0]->nComp(); |