From e6d55c081bb3b32f55aef274d934dfff35017271 Mon Sep 17 00:00:00 2001 From: Kevin Locke Date: Fri, 8 Aug 2014 04:05:28 -0400 Subject: [PATCH] Fix bug #852: define Traits type in general_matrix_matrix_product when EIGEN_USE_BLAS is defined --- Eigen/src/Core/products/GeneralMatrixMatrix_MKL.h | 2 ++ 1 file changed, 2 insertions(+) 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 \ { \ +typedef gebp_traits Traits; \ +\ static void run(Index rows, Index cols, Index depth, \ const EIGTYPE* _lhs, Index lhsStride, \ const EIGTYPE* _rhs, Index rhsStride, \