aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/products
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2019-01-30 16:48:20 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2019-01-30 16:48:20 +0100
commitde77bf5d6c4fb63a07a7bf7201b26f435d9b19b5 (patch)
treef0d834a6e1c9f9c940660d345b6211dbae9ea71e /Eigen/src/Core/products
parentd586686924c2783f56bd514c9365afeecc3e84f6 (diff)
Fix compilation with ARM64.
Diffstat (limited to 'Eigen/src/Core/products')
-rw-r--r--Eigen/src/Core/products/GeneralBlockPanelKernel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Eigen/src/Core/products/GeneralBlockPanelKernel.h b/Eigen/src/Core/products/GeneralBlockPanelKernel.h
index 030c7740a..f07746fdb 100644
--- a/Eigen/src/Core/products/GeneralBlockPanelKernel.h
+++ b/Eigen/src/Core/products/GeneralBlockPanelKernel.h
@@ -1053,9 +1053,9 @@ protected:
#if EIGEN_ARCH_ARM64 && defined EIGEN_VECTORIZE_NEON
-template<int _PacketSize>
-struct gebp_traits <float, float, false, false,Architecture::NEON,_PacketSize>
- : gebp_traits<float,float,false,false,Architecture::Generic,_PacketSize>
+template<>
+struct gebp_traits <float, float, false, false,Architecture::NEON,PacketFull>
+ : gebp_traits<float,float,false,false,Architecture::Generic,PacketFull>
{
typedef float RhsPacket;