mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-06-04 18:54:00 +08:00
Fixes for fixed sizes and non vectorizable types
This commit is contained in:
parent
2c3c95990d
commit
6d665d446b
@ -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;
|
||||||
|
@ -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};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user