Skip to content

Commit e8c7897

Browse files
committed
Formatting
Signed-off-by: Brian Kelley <bmkelle@sandia.gov>
1 parent 9b4cac5 commit e8c7897

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

graph/src/KokkosGraph_CoarsenConstruct.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ struct SortLowDegreeCrsMatrixFunctor {
7373
Kokkos::single(Kokkos::PerTeam(t), [&]() { reducer++; });
7474
return;
7575
}
76-
Kokkos::Experimental::sort_by_key_team(t, Kokkos::subview(entries, Kokkos::make_pair(rowStart, rowEnd)), Kokkos::subview(values, Kokkos::make_pair(rowStart, rowEnd)));
76+
Kokkos::Experimental::sort_by_key_team(t, Kokkos::subview(entries, Kokkos::make_pair(rowStart, rowEnd)),
77+
Kokkos::subview(values, Kokkos::make_pair(rowStart, rowEnd)));
7778
}
7879

7980
rowmap_t rowmap;

sparse/impl/KokkosSparse_gauss_seidel_impl.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,8 @@ class PointGaussSeidel {
606606
nnz_lno_t color = t.league_rank();
607607
nnz_lno_t colorBegin = color_xadj(color);
608608
nnz_lno_t colorLen = color_xadj(color + 1) - colorBegin;
609-
Kokkos::Experimental::sort_team(t, Kokkos::subview(color_adj, Kokkos::make_pair(colorBegin, colorBegin + colorLen)), comp);
609+
Kokkos::Experimental::sort_team(
610+
t, Kokkos::subview(color_adj, Kokkos::make_pair(colorBegin, colorBegin + colorLen)), comp);
610611
// Now that the color set is sorted, count how many long rows there were
611612
nnz_lno_t numLongRows;
612613
Kokkos::parallel_reduce(

sparse/impl/KokkosSparse_mdf_impl.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,8 @@ struct MDF_compute_list_length {
568568
team.team_reduce(Kokkos::Sum<ordinal_type, execution_space>(updateIdx));
569569

570570
// Sort update list
571-
Kokkos::Experimental::sort_team(team, Kokkos::subview(update_list, Kokkos::make_pair<ordinal_type, ordinal_type>(0, updateIdx)));
571+
Kokkos::Experimental::sort_team(
572+
team, Kokkos::subview(update_list, Kokkos::make_pair<ordinal_type, ordinal_type>(0, updateIdx)));
572573
}
573574
{
574575
size_type numEntrU = 0;

0 commit comments

Comments
 (0)