Fix NEON make_packet2f.

(cherry picked from commit 2dfbf1b251e7a32c140f36fc865b154b8a725bdd)
This commit is contained in:
Antonio Sánchez 2023-02-14 16:52:07 +00:00 committed by Antonio Sanchez
parent 879854382c
commit a659b5dbb2

View File

@ -89,7 +89,7 @@ typedef int64x2_t Packet2l;
typedef uint64x2_t Packet2ul;
EIGEN_ALWAYS_INLINE Packet4f make_packet4f(float a, float b, float c, float d) { return {a, b, c, d}; }
EIGEN_ALWAYS_INLINE Packet4f make_packet2f(float a, float b) { return {a, b}; }
EIGEN_ALWAYS_INLINE Packet2f make_packet2f(float a, float b) { return {a, b}; }
#endif // EIGEN_COMP_MSVC_STRICT