Skip to content

Commit 4442530

Browse files
committed
Add testing
1 parent e1a41b3 commit 4442530

File tree

3 files changed

+817
-845
lines changed

3 files changed

+817
-845
lines changed

dpnp/backend/extensions/sparse/gemv.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ void init_sparse_gemv_dispatch_tables(void)
405405

406406
// 1-D table on Tv for compute. dpctl's type dispatch headers expose
407407
// DispatchVectorBuilder as the 1-D analogue of DispatchTableBuilder.
408-
dpctl_td_ns::DispatchVectorBuilder
408+
dpctl_td_ns::DispatchVectorBuilder<
409409
gemv_compute_fn_ptr_t,
410410
GemvComputeContigFactory,
411411
dpctl_td_ns::num_types>

dpnp/backend/extensions/sparse/types_matrix.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ namespace dpnp::extensions::sparse::types
6565
template <typename Tv, typename Ti>
6666
struct SparseGemvInitTypePairSupportFactory
6767
{
68-
static constexpr bool is_defined = std::disjunction
68+
static constexpr bool is_defined = std::disjunction<
6969
// real single precision
7070
dpctl_td_ns::TypePairDefinedEntry<Tv, float, Ti, std::int32_t>,
7171
dpctl_td_ns::TypePairDefinedEntry<Tv, float, Ti, std::int64_t>,

0 commit comments

Comments
 (0)