Skip to content

Commit

Permalink
[ci skip] fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
cz4rs committed Nov 20, 2023
1 parent 33a1106 commit 3dd0b82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/Threads/Kokkos_Threads_Team.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ KOKKOS_INLINE_FUNCTION void parallel_scan(
lambda(i, scan_val, false);
}

auto & team_member = loop_bounds.thread;
auto& team_member = loop_bounds.thread;

// 'scan_val' output is the exclusive prefix sum
scan_val = team_member.team_scan(scan_val);
Expand Down
2 changes: 1 addition & 1 deletion core/src/impl/Kokkos_HostThreadTeam.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,7 @@ KOKKOS_INLINE_FUNCTION
closure(i, accum, false);
}

auto & team_member = loop_boundaries.thread;
auto& team_member = loop_boundaries.thread;

// 'accum' output is the exclusive prefix sum
accum = team_member.team_scan(accum);
Expand Down

0 comments on commit 3dd0b82

Please sign in to comment.