Skip to content

Commit

Permalink
Sparse - SpMV: removing calls to unsuported oneapi - MKL functions (k…
Browse files Browse the repository at this point in the history
  • Loading branch information
lucbv authored Jul 11, 2024
1 parent d310f1a commit cb7a552
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sparse/src/KokkosSparse_spmv.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ void spmv(const ExecutionSpace& space, Handle* handle, const char mode[],
#ifdef KOKKOS_ENABLE_SYCL
if constexpr (std::is_same_v<ExecutionSpace,
Kokkos::Experimental::SYCL>) {
useNative = useNative || (mode[0] == Conjugate[0]);
useNative = useNative || (mode[0] != NoTranspose[0]);
}
#endif
#endif
Expand Down

0 comments on commit cb7a552

Please sign in to comment.