Skip to content

Commit

Permalink
policy_benchmark: fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricchevalier19 committed Mar 4, 2024
1 parent 97fa76f commit 715d615
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions benchmarks/policy_performance/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,9 @@ int main(int argc, char* argv[]) {

Kokkos::parallel_reduce(
"parallel_reduce warmup", Kokkos::TeamPolicy<>(10, 1),
KOKKOS_LAMBDA(const Kokkos::TeamPolicy<>::member_type&,
double& lval) { lval += 1; },
KOKKOS_LAMBDA(const Kokkos::TeamPolicy<>::member_type&, double& lval) {
lval += 1;
},
result);

using view_type_1d = Kokkos::View<double*, Kokkos::LayoutRight>;
Expand Down

0 comments on commit 715d615

Please sign in to comment.