Skip to content

Commit 690d0cf

Browse files
ndellingwoodlucbv
authored andcommitted
Add guard for cusparse spmv_mv_tpl_spec_avail
Address issue kokkos#2175 Configuring with magma tpl enabled and cusparse disabled mistakenly triggers the cusparse tpl avail check to be true Guard the KOKKOSSPARSE_SPMV_MV_TPL_SPEC_AVAIL_CUSPARSE macros when CUSPARSE is enabled to prevent this
1 parent 2a5f478 commit 690d0cf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sparse/tpls/KokkosSparse_spmv_mv_tpl_spec_avail.hpp

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ struct spmv_mv_tpl_spec_avail {
2929
enum : bool { value = false };
3030
};
3131

32+
#ifdef KOKKOSKERNELS_ENABLE_TPL_CUSPARSE
3233
#define KOKKOSSPARSE_SPMV_MV_TPL_SPEC_AVAIL_CUSPARSE(SCALAR, ORDINAL, OFFSET, \
3334
XL, YL, MEMSPACE) \
3435
template <> \
@@ -152,6 +153,7 @@ KOKKOSSPARSE_SPMV_MV_TPL_SPEC_AVAIL_CUSPARSE(Kokkos::Experimental::half_t, int,
152153

153154
#endif
154155
#endif // defined(CUSPARSE_VERSION) && (10300 <= CUSPARSE_VERSION)
156+
#endif
155157

156158
} // namespace Impl
157159
} // namespace KokkosSparse

0 commit comments

Comments
 (0)