* resurected Flagged::_expression used to optimize m+=(a*b).lazy()

(equivalent to the GEMM blas routine)
* added a GEMM benchmark
This commit is contained in:
Gael Guennebaud
2008-07-01 16:20:06 +00:00
parent 95549007b3
commit 9433df83a7
2 changed files with 234 additions and 0 deletions

View File

@@ -113,6 +113,8 @@ template<typename ExpressionType, unsigned int Added, unsigned int Removed> clas
m_matrix.const_cast_derived().template writePacket<LoadMode>(index, x);
}
const ExpressionType& _expression() const { return m_matrix; }
protected:
ExpressionTypeNested m_matrix;
};