Skip to content

Commit

Permalink
Fix leftover index
Browse files Browse the repository at this point in the history
  • Loading branch information
pgrete committed Nov 14, 2024
1 parent 59d0067 commit 1dbfccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hydro/hydro_driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ TaskStatus RKL2StepOther(MeshData<Real> *md_Y0, MeshData<Real> *md_Yjm1,
// by enough work over the entire pack and it allows to not use any conditionals.
parthenon::par_for(
DEFAULT_LOOP_PATTERN, "RKL other step", parthenon::DevExecSpace(), 0,
Y0.GetDim(5) - 1, 0, kb.s, kb.e, jb.s, jb.e, ib.s, ib.e,
Y0.GetDim(5) - 1, kb.s, kb.e, jb.s, jb.e, ib.s, ib.e,
KOKKOS_LAMBDA(const int b, const int k, const int j, const int i) {
// First calc this step
const auto &coords = Yjm1.GetCoords(b);
Expand Down

0 comments on commit 1dbfccd

Please sign in to comment.