Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
fnrizzi committed Sep 5, 2023
1 parent afbbdcc commit 93fe629
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions core/unit_test/TestTeamVector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -618,13 +618,12 @@ struct functor_vec_scan_ret_val {
using execution_space = ExecutionSpace;
using view_type = Kokkos::View<Scalar **, execution_space>;

Kokkos::View<int, Kokkos::LayoutLeft, ExecutionSpace> flag;
Kokkos::View<int, ExecutionSpace> flag;
view_type return_values;
int team_size;

functor_vec_scan_ret_val(
Kokkos::View<int, Kokkos::LayoutLeft, ExecutionSpace> flag_, int nteams,
int tsize)
functor_vec_scan_ret_val(Kokkos::View<int, ExecutionSpace> flag_, int nteams,
int tsize)
: flag(flag_), team_size(tsize) {
return_values = view_type("return_values", nteams, tsize);
}
Expand Down

0 comments on commit 93fe629

Please sign in to comment.