aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Kevin Locke <kevin@kevinlocke.name>2014-08-08 04:05:28 -0400
committerGravatar Kevin Locke <kevin@kevinlocke.name>2014-08-08 04:05:28 -0400
commite6d55c081bb3b32f55aef274d934dfff35017271 (patch)
tree0fe6a50f44aa2cc6f4778e20da5c2ea9eff28f63 /Eigen
parent57f71a5552025320f64e330b8e67326097bbce92 (diff)
Fix bug #852: define Traits type in general_matrix_matrix_product when EIGEN_USE_BLAS is defined
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/src/Core/products/GeneralMatrixMatrix_MKL.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Eigen/src/Core/products/GeneralMatrixMatrix_MKL.h b/Eigen/src/Core/products/GeneralMatrixMatrix_MKL.h
index 060af328e..b6ae729b2 100644
--- a/Eigen/src/Core/products/GeneralMatrixMatrix_MKL.h
+++ b/Eigen/src/Core/products/GeneralMatrixMatrix_MKL.h
@@ -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, \