TR-mbed 1.0
Loading...
Searching...
No Matches
TypeCasting.h
Go to the documentation of this file.
1// This file is part of Eigen, a lightweight C++ template library
2// for linear algebra.
3//
4// Copyright (C) 2015 Benoit Steiner <benoit.steiner.goog@gmail.com>
5//
6// This Source Code Form is subject to the terms of the Mozilla
7// Public License v. 2.0. If a copy of the MPL was not distributed
8// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
10#ifndef EIGEN_TYPE_CASTING_SSE_H
11#define EIGEN_TYPE_CASTING_SSE_H
12
13namespace Eigen {
14
15namespace internal {
16
17#ifndef EIGEN_VECTORIZE_AVX
18template <>
19struct type_casting_traits<float, int> {
20 enum {
22 SrcCoeffRatio = 1,
24 };
25};
26
27template <>
28struct type_casting_traits<int, float> {
29 enum {
31 SrcCoeffRatio = 1,
33 };
34};
35
36template <>
44
45template <>
53#endif
54
58
62
64 return _mm_shuffle_ps(_mm_cvtpd_ps(a), _mm_cvtpd_ps(b), (1 << 2) | (1 << 6));
65}
66
68 // Simply discard the second half of the input
69 return _mm_cvtps_pd(a);
70}
71
75
79
83
87
88// Disable the following code since it's broken on too many platforms / compilers.
89//#elif defined(EIGEN_VECTORIZE_SSE) && (!EIGEN_ARCH_x86_64) && (!EIGEN_COMP_MSVC)
90#if 0
91
92template <>
93struct type_casting_traits<Eigen::half, float> {
94 enum {
96 SrcCoeffRatio = 1,
98 };
99};
100
101template<> EIGEN_STRONG_INLINE Packet4f pcast<Packet4h, Packet4f>(const Packet4h& a) {
102 __int64_t a64 = _mm_cvtm64_si64(a.x);
103 Eigen::half h = raw_uint16_to_half(static_cast<unsigned short>(a64));
104 float f1 = static_cast<float>(h);
105 h = raw_uint16_to_half(static_cast<unsigned short>(a64 >> 16));
106 float f2 = static_cast<float>(h);
107 h = raw_uint16_to_half(static_cast<unsigned short>(a64 >> 32));
108 float f3 = static_cast<float>(h);
109 h = raw_uint16_to_half(static_cast<unsigned short>(a64 >> 48));
110 float f4 = static_cast<float>(h);
111 return _mm_set_ps(f4, f3, f2, f1);
112}
113
114template <>
115struct type_casting_traits<float, Eigen::half> {
116 enum {
117 VectorizedCast = 1,
118 SrcCoeffRatio = 1,
119 TgtCoeffRatio = 1
120 };
121};
122
123template<> EIGEN_STRONG_INLINE Packet4h pcast<Packet4f, Packet4h>(const Packet4f& a) {
124 EIGEN_ALIGN16 float aux[4];
125 pstore(aux, a);
126 Eigen::half h0(aux[0]);
127 Eigen::half h1(aux[1]);
128 Eigen::half h2(aux[2]);
129 Eigen::half h3(aux[3]);
130
131 Packet4h result;
132 result.x = _mm_set_pi16(h3.x, h2.x, h1.x, h0.x);
133 return result;
134}
135
136#endif
137
138} // end namespace internal
139
140} // end namespace Eigen
141
142#endif // EIGEN_TYPE_CASTING_SSE_H
ArrayXXi a
Definition Array_initializer_list_23_cxx11.cpp:1
#define EIGEN_ALIGN16
Definition ConfigureVectorization.h:153
#define EIGEN_STRONG_INLINE
Definition Macros.h:917
Scalar * b
Definition benchVecAdd.cpp:17
return int(ret)+1
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR __half_raw raw_uint16_to_half(numext::uint16_t x)
Definition Half.h:495
v2f64 Packet2d
Definition PacketMath.h:820
__vector int Packet4i
Definition PacketMath.h:31
EIGEN_STRONG_INLINE Packet4i preinterpret< Packet4i, Packet2d >(const Packet2d &a)
Definition TypeCasting.h:84
EIGEN_STRONG_INLINE Packet2d pcast< Packet4f, Packet2d >(const Packet4f &a)
Definition TypeCasting.h:67
EIGEN_STRONG_INLINE Packet4f pcast< Packet4i, Packet4f >(const Packet4i &a)
Definition PacketMath.h:2198
EIGEN_STRONG_INLINE Packet2d preinterpret< Packet2d, Packet4i >(const Packet4i &a)
Definition TypeCasting.h:80
EIGEN_DEVICE_FUNC void pstore(Scalar *to, const Packet &from)
Definition GenericPacketMath.h:696
EIGEN_STRONG_INLINE Packet4i pcast< Packet4f, Packet4i >(const Packet4f &a)
Definition PacketMath.h:2190
EIGEN_STRONG_INLINE Packet4i preinterpret< Packet4i, Packet4f >(const Packet4f &a)
Definition PacketMath.h:2244
EIGEN_STRONG_INLINE Packet4f preinterpret< Packet4f, Packet4i >(const Packet4i &a)
Definition PacketMath.h:2248
__vector float Packet4f
Definition PacketMath.h:30
EIGEN_STRONG_INLINE Packet4f pcast< Packet2d, Packet4f >(const Packet2d &a, const Packet2d &b)
Definition TypeCasting.h:63
Namespace containing all symbols from the Eigen library.
Definition bench_norm.cpp:85
Definition BandTriangularSolver.h:13
Definition Half.h:142
Definition ForwardDeclarations.h:17
Definition GenericPacketMath.h:148
@ TgtCoeffRatio
Definition GenericPacketMath.h:152
@ VectorizedCast
Definition GenericPacketMath.h:150
@ SrcCoeffRatio
Definition GenericPacketMath.h:151