mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-23 18:19:34 +08:00
Call OutputKernel in evalGemv
This commit is contained in:
parent
e204ecdaaf
commit
43206ac4de
@ -549,6 +549,11 @@ struct TensorContractionEvaluatorBase
|
|||||||
internal::general_matrix_vector_product<Index,LhsScalar,LhsMapper,ColMajor,false,RhsScalar,RhsMapper,false>::run(
|
internal::general_matrix_vector_product<Index,LhsScalar,LhsMapper,ColMajor,false,RhsScalar,RhsMapper,false>::run(
|
||||||
rows, cols, lhs, rhs,
|
rows, cols, lhs, rhs,
|
||||||
buffer, resIncr, alpha);
|
buffer, resIncr, alpha);
|
||||||
|
|
||||||
|
typedef internal::blas_data_mapper<Scalar, Index, ColMajor> OutputMapper;
|
||||||
|
m_output_kernel(OutputMapper(buffer, rows), m_tensor_contraction_params,
|
||||||
|
static_cast<Index>(0), static_cast<Index>(0), rows,
|
||||||
|
static_cast<Index>(1));
|
||||||
}
|
}
|
||||||
|
|
||||||
template <bool lhs_inner_dim_contiguous, bool rhs_inner_dim_contiguous, bool rhs_inner_dim_reordered, int Alignment>
|
template <bool lhs_inner_dim_contiguous, bool rhs_inner_dim_contiguous, bool rhs_inner_dim_reordered, int Alignment>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user