Skip to content

Commit

Permalink
Fix type consistency
Browse files Browse the repository at this point in the history
in an sptrsv supernodal functor. Mirror of KK PR #885
  • Loading branch information
brian-kelley committed Feb 2, 2021
1 parent e07ef9d commit e6eda0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,7 @@ struct UpperTriTranSupernodalFunctor
using scalar_t = typename ValuesType::non_const_value_type;

using integer_view_t = Kokkos::View<int*, memory_space>;
using work_view_t = typename Kokkos::View<scalar_t*, memory_space>;
using work_view_t = typename Kokkos::View<scalar_t*, Kokkos::Device<execution_space, memory_space>>;

using range_type = Kokkos::pair<int, int>;

Expand Down

0 comments on commit e6eda0b

Please sign in to comment.