Skip to content

Commit

Permalink
Add missing template argument
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-kelley committed Aug 15, 2023
1 parent bbc821b commit 8ec4022
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions sparse/impl/KokkosSparse_spmv_bsrmatrix_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -423,9 +423,10 @@ struct BsrMatrixSpMVTensorCoreDispatcher {
typedef typename XMatrix::value_type XScalar;

template <unsigned X, unsigned Y, unsigned Z>
using Dyn = BsrMatrixSpMVTensorCoreFunctor<AMatrix, AFragScalar, XMatrix,
XFragScalar, YMatrix, YFragScalar,
FRAG_M, FRAG_N, FRAG_K, X, Y, Z>;
using Dyn =
BsrMatrixSpMVTensorCoreFunctor<execution_space, AMatrix, AFragScalar,
XMatrix, XFragScalar, YMatrix, YFragScalar,
FRAG_M, FRAG_N, FRAG_K, X, Y, Z>;

// to be used when the various matrix types are supported
static void tag_dispatch(std::true_type, const execution_space &exec,
Expand Down

0 comments on commit 8ec4022

Please sign in to comment.