Skip to content

Commit

Permalink
merge fix
Browse files Browse the repository at this point in the history
  • Loading branch information
djdunning committed Oct 4, 2024
2 parents ce443d4 + d5bf5c7 commit 04b7b51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/include/macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -445,11 +445,11 @@ THREAD_ID \
teamMember.team_rank()

#define \
FOR_FIRST(i, x1, fcn) \
FOR_FIRST(i, x0, x1, fcn) \
Kokkos::parallel_for( \
Kokkos::TeamPolicy<>( x1, Kokkos::AUTO, 32 ), \
Kokkos::TeamPolicy<>( x1-x0, Kokkos::AUTO, 32 ), \
KOKKOS_LAMBDA ( const Kokkos::TeamPolicy<>::member_type &teamMember ) \
{ const int i = TEAM_ID; fcn} )
{ const int i = TEAM_ID + x0; fcn} )

#define \
FOR_SECOND(j, y0, y1, fcn) \
Expand Down

0 comments on commit 04b7b51

Please sign in to comment.