Skip to content

Commit

Permalink
Revert loop pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
lroberts36 committed Oct 13, 2023
1 parent 14c452d commit c779ddf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/poisson_gmg/poisson_package.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ TaskStatus SetToZero(std::shared_ptr<MeshData<Real>> &md) {
IndexRange jb = cb.GetBoundsJ(IndexDomain::interior, te);
IndexRange kb = cb.GetBoundsK(IndexDomain::interior, te);
parthenon::par_for_inner(
DEFAULT_INNER_LOOP_PATTERN, member, kb.s, kb.e, jb.s, jb.e, ib.s, ib.e,
[&](int k, int j, int i) { pack(b, te, var(), k, j, i) = 0.0; });
parthenon::inner_loop_pattern_simdfor_tag, member, kb.s, kb.e, jb.s, jb.e,
ib.s, ib.e, [&](int k, int j, int i) { pack(b, te, var(), k, j, i) = 0.0; });
});
return TaskStatus::complete;
}
Expand Down

0 comments on commit c779ddf

Please sign in to comment.