Skip to content

Commit

Permalink
Remove team_size calculation from test not using it
Browse files Browse the repository at this point in the history
  • Loading branch information
tcclevenger committed Jan 17, 2024
1 parent 0f907e6 commit 38b2a51
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions core/unit_test/TestReducers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -396,9 +396,6 @@ struct TestReducers {
const int league_size = 1;
Kokkos::View<Scalar*, ExecSpace> result("result", league_size);
TeamSumNestedFunctor tnf(f, league_size, 0, result);
auto team_size_max = Kokkos::TeamPolicy<ExecSpace>(league_size, 1)
.team_size_max(tnf, Kokkos::ParallelForTag());
auto team_size = std::min(team_size_max, TEST_EXECSPACE().concurrency());
Kokkos::parallel_for(
#ifdef KOKKOS_ENABLE_OPENMPTARGET
Kokkos::TeamPolicy<ExecSpace>(1, Kokkos::AUTO),
Expand Down

0 comments on commit 38b2a51

Please sign in to comment.