mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
* added optimized paths for matrix-vector and vector-matrix products
(using either a cache friendly strategy or re-using dot-product vectorized implementation) * add LinearAccessBit to Transpose
This commit is contained in:
@@ -219,7 +219,7 @@ template<typename Derived> class MatrixBase
|
||||
/** Overloaded for cache friendly product evaluation */
|
||||
template<typename OtherDerived>
|
||||
Derived& lazyAssign(const Flagged<OtherDerived, 0, EvalBeforeNestingBit | EvalBeforeAssigningBit>& other)
|
||||
{ lazyAssign(other._expression()); }
|
||||
{ return lazyAssign(other._expression()); }
|
||||
|
||||
/** Overloaded for sparse product evaluation */
|
||||
template<typename Derived1, typename Derived2>
|
||||
|
||||
Reference in New Issue
Block a user