Fix bug #852: define Traits type in general_matrix_matrix_product when EIGEN_USE_BLAS is defined

This commit is contained in:
Kevin Locke 2014-08-08 04:05:28 -04:00
parent 57f71a5552
commit e6d55c081b

View File

@ -53,6 +53,8 @@ template< \
int RhsStorageOrder, bool ConjugateRhs> \
struct general_matrix_matrix_product<Index,EIGTYPE,LhsStorageOrder,ConjugateLhs,EIGTYPE,RhsStorageOrder,ConjugateRhs,ColMajor> \
{ \
typedef gebp_traits<EIGTYPE,EIGTYPE> Traits; \
\
static void run(Index rows, Index cols, Index depth, \
const EIGTYPE* _lhs, Index lhsStride, \
const EIGTYPE* _rhs, Index rhsStride, \