aboutsummaryrefslogtreecommitdiff
path: root/Source/LaserParticleContainer.cpp
diff options
context:
space:
mode:
authorGravatar Weiqun Zhang <weiqunzhang@lbl.gov> 2018-12-06 16:32:29 -0800
committerGravatar Weiqun Zhang <weiqunzhang@lbl.gov> 2018-12-06 16:32:29 -0800
commit8ae0feaf0f5573c5f1623cb8acaf3bcc6ab5566c (patch)
treec912659c09cfa4ecf4ca42c45891a48f30557c6f /Source/LaserParticleContainer.cpp
parented2106748e33f62b67eb457d0564503d745762f6 (diff)
downloadWarpX-8ae0feaf0f5573c5f1623cb8acaf3bcc6ab5566c.tar.gz
WarpX-8ae0feaf0f5573c5f1623cb8acaf3bcc6ab5566c.tar.zst
WarpX-8ae0feaf0f5573c5f1623cb8acaf3bcc6ab5566c.zip
more changes due to AMReX changes
Diffstat (limited to 'Source/LaserParticleContainer.cpp')
-rw-r--r--Source/LaserParticleContainer.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/LaserParticleContainer.cpp b/Source/LaserParticleContainer.cpp
index 6ee79e9aa..cf669d32d 100644
--- a/Source/LaserParticleContainer.cpp
+++ b/Source/LaserParticleContainer.cpp
@@ -432,7 +432,11 @@ LaserParticleContainer::Evolve (int lev,
if (cost) {
const Box& tbx = pti.tilebox();
wt = (amrex::second() - wt) / tbx.d_numPts();
- (*cost)[pti].plus(wt, tbx);
+ FArrayBox* costfab = cost->fabPtr(pti);
+ AMREX_LAUNCH_HOST_DEVICE_LAMBDA ( tbx, work_box,
+ {
+ costfab->plus(wt, work_box);
+ });
}
}
}