Fixes for fixed sizes and non vectorizable types

This commit is contained in:
Gael Guennebaud 2014-04-17 23:26:34 +02:00
parent 2c3c95990d
commit 6d665d446b
2 changed files with 2 additions and 1 deletions

View File

@ -287,7 +287,7 @@ class gemm_blocking_space<StorageOrder,_LhsScalar,_RhsScalar,MaxRows, MaxCols, M
public: public:
gemm_blocking_space(DenseIndex /*rows*/, DenseIndex /*cols*/, DenseIndex /*depth*/) gemm_blocking_space(DenseIndex /*rows*/, DenseIndex /*cols*/, DenseIndex /*depth*/, bool /*full_rows*/ = false)
{ {
this->m_mc = ActualRows; this->m_mc = ActualRows;
this->m_nc = ActualCols; this->m_nc = ActualCols;

View File

@ -101,6 +101,7 @@ template<typename T> struct packet_traits;
template<typename T> struct unpacket_traits template<typename T> struct unpacket_traits
{ {
typedef T type; typedef T type;
typedef T half;
enum {size=1}; enum {size=1};
}; };