From 6d665d446be19f233a2d94e05db206cf29a12191 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 17 Apr 2014 23:26:34 +0200 Subject: [PATCH] Fixes for fixed sizes and non vectorizable types --- Eigen/src/Core/products/GeneralMatrixMatrix.h | 2 +- Eigen/src/Core/util/XprHelper.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Eigen/src/Core/products/GeneralMatrixMatrix.h b/Eigen/src/Core/products/GeneralMatrixMatrix.h index 38ca7b242..b45797f09 100644 --- a/Eigen/src/Core/products/GeneralMatrixMatrix.h +++ b/Eigen/src/Core/products/GeneralMatrixMatrix.h @@ -287,7 +287,7 @@ class gemm_blocking_spacem_mc = ActualRows; this->m_nc = ActualCols; diff --git a/Eigen/src/Core/util/XprHelper.h b/Eigen/src/Core/util/XprHelper.h index a08538aff..1b3e122e1 100644 --- a/Eigen/src/Core/util/XprHelper.h +++ b/Eigen/src/Core/util/XprHelper.h @@ -101,6 +101,7 @@ template struct packet_traits; template struct unpacket_traits { typedef T type; + typedef T half; enum {size=1}; };