Skip to content

Commit

Permalink
ifpack2: update namespace for sort_crs_matrix routine
Browse files Browse the repository at this point in the history
Compatibility update for kokkos/kokkos-kernels#1439
  • Loading branch information
ndellingwood committed Aug 9, 2022
1 parent f1f2ffb commit 7e2d199
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@

#include "Ifpack2_Details_AdditiveSchwarzFilter_decl.hpp"
#include "KokkosKernels_Sorting.hpp"
#include "KokkosSparse_SortCrs.hpp"
#include "Kokkos_Bitset.hpp"

namespace Ifpack2
Expand Down Expand Up @@ -419,7 +420,7 @@ void AdditiveSchwarzFilter<MatrixType>::fillLocalMatrix(typename AdditiveSchwarz
}
});
//Sort the matrix, since the reordering can shuffle the entries into any order.
KokkosKernels::sort_crs_matrix(localMatrix);
KokkosSparse::sort_crs_matrix(localMatrix);
}

template<class MatrixType>
Expand Down

0 comments on commit 7e2d199

Please sign in to comment.