Skip to content

Commit

Permalink
tpetra: move label to first arg of parallel_scan
Browse files Browse the repository at this point in the history
Compatibility update for future [email protected] release
kokkos/kokkos#5141
  • Loading branch information
ndellingwood committed Aug 5, 2022
1 parent 0536e37 commit 63e42d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tpetra/core/src/Tpetra_Details_computeOffsets.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class ComputeOffsetsFromCounts {
functor_type functor (offsets, counts);
OffsetType total (0);
const char funcName[] = "Tpetra::Details::computeOffsetsFromCounts";
Kokkos::parallel_scan (range, functor, total, funcName);
Kokkos::parallel_scan (funcName, range, functor, total);
return total;
}

Expand Down

0 comments on commit 63e42d5

Please sign in to comment.