forked from kokkos/kokkos
-
Notifications
You must be signed in to change notification settings - Fork 0
Kokkos::ParallelReduceTag
JBludau edited this page Sep 1, 2022
·
1 revision
Header File: Kokkos_ExecPolicy.hpp
A tag used in team size calculation functions to indicate that the functor for which a team size is being requested is being used in a parallel_reduce
Usage:
using PolicyType = Kokkos::TeamPolicy<>;
PolicyType policy;
int recommended_team_size = policy.team_size_recommended(
Functor, Kokkos::ParallelReduceTag());struct ParallelReduceTag{};None
None
Default
None