Skip to content

Commit

Permalink
add BlockTimer to SparseDealloc
Browse files Browse the repository at this point in the history
  • Loading branch information
jdolence committed Sep 28, 2023
1 parent bb31132 commit 50c7acf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/interface/update.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ TaskStatus SparseDealloc(MeshData<Real> *md) {
Kokkos::TeamPolicy<>(parthenon::DevExecSpace(), pack.GetNBlocks(), Kokkos::AUTO),
KOKKOS_LAMBDA(parthenon::team_mbr_t team_member) {
const int b = team_member.league_rank();
BlockTimer(team_member, pack, b);

const int lo = pack.GetLowerBound(b);
const int hi = pack.GetUpperBound(b);
Expand Down

0 comments on commit 50c7acf

Please sign in to comment.