10#ifndef EIGEN_TYPE_CASTING_FP16_AVX512_H
11#define EIGEN_TYPE_CASTING_FP16_AVX512_H
14#include "../../InternalHeaderCheck.h"
20EIGEN_STRONG_INLINE Packet32s preinterpret<Packet32s, Packet32h>(
const Packet32h& a) {
21 return _mm512_castph_si512(a);
24EIGEN_STRONG_INLINE Packet16s preinterpret<Packet16s, Packet16h>(
const Packet16h& a) {
25 return _mm256_castph_si256(a);
28EIGEN_STRONG_INLINE Packet8s preinterpret<Packet8s, Packet8h>(
const Packet8h& a) {
29 return _mm_castph_si128(a);
33EIGEN_STRONG_INLINE Packet32h preinterpret<Packet32h, Packet32s>(
const Packet32s& a) {
34 return _mm512_castsi512_ph(a);
37EIGEN_STRONG_INLINE Packet16h preinterpret<Packet16h, Packet16s>(
const Packet16s& a) {
38 return _mm256_castsi256_ph(a);
41EIGEN_STRONG_INLINE Packet8h preinterpret<Packet8h, Packet8s>(
const Packet8s& a) {
42 return _mm_castsi128_ph(a);
46EIGEN_STRONG_INLINE Packet16f pcast<Packet16h, Packet16f>(
const Packet16h& a) {
50EIGEN_STRONG_INLINE Packet8f pcast<Packet8h, Packet8f>(
const Packet8h& a) {
55EIGEN_STRONG_INLINE Packet16h pcast<Packet16f, Packet16h>(
const Packet16f& a) {
59EIGEN_STRONG_INLINE Packet8h pcast<Packet8f, Packet8h>(
const Packet8f& a) {
64EIGEN_STRONG_INLINE Packet16f pcast<Packet32h, Packet16f>(
const Packet32h& a) {
66 Packet16h low = _mm256_castpd_ph(_mm512_extractf64x4_pd(_mm512_castph_pd(a), 0));
67 return _mm512_cvtxph_ps(low);
70EIGEN_STRONG_INLINE Packet8f pcast<Packet16h, Packet8f>(
const Packet16h& a) {
72 Packet8h low = _mm_castps_ph(_mm256_extractf32x4_ps(_mm256_castph_ps(a), 0));
73 return _mm256_cvtxph_ps(low);
76EIGEN_STRONG_INLINE Packet4f pcast<Packet8h, Packet4f>(
const Packet8h& a) {
77 Packet8f full = _mm256_cvtxph_ps(a);
79 return _mm256_extractf32x4_ps(full, 0);
83EIGEN_STRONG_INLINE Packet32h pcast<Packet16f, Packet32h>(
const Packet16f& a,
const Packet16f& b) {
84 __m512 result = _mm512_castsi512_ps(_mm512_castsi256_si512(_mm256_castph_si256(_mm512_cvtxps_ph(a))));
85 result = _mm512_insertf32x8(result, _mm256_castph_ps(_mm512_cvtxps_ph(b)), 1);
86 return _mm512_castps_ph(result);
89EIGEN_STRONG_INLINE Packet16h pcast<Packet8f, Packet16h>(
const Packet8f& a,
const Packet8f& b) {
90 __m256 result = _mm256_castsi256_ps(_mm256_castsi128_si256(_mm_castph_si128(_mm256_cvtxps_ph(a))));
91 result = _mm256_insertf32x4(result, _mm_castph_ps(_mm256_cvtxps_ph(b)), 1);
92 return _mm256_castps_ph(result);
95EIGEN_STRONG_INLINE Packet8h pcast<Packet4f, Packet8h>(
const Packet4f& a,
const Packet4f& b) {
96 __m256 result = _mm256_castsi256_ps(_mm256_castsi128_si256(_mm_castps_si128(a)));
97 result = _mm256_insertf128_ps(result, b, 1);
98 return _mm256_cvtxps_ph(result);
102EIGEN_STRONG_INLINE Packet32s pcast<Packet32h, Packet32s>(
const Packet32h& a) {
103 return _mm512_cvtph_epi16(a);
106EIGEN_STRONG_INLINE Packet16s pcast<Packet16h, Packet16s>(
const Packet16h& a) {
107 return _mm256_cvtph_epi16(a);
110EIGEN_STRONG_INLINE Packet8s pcast<Packet8h, Packet8s>(
const Packet8h& a) {
111 return _mm_cvtph_epi16(a);
115EIGEN_STRONG_INLINE Packet32h pcast<Packet32s, Packet32h>(
const Packet32s& a) {
116 return _mm512_cvtepi16_ph(a);
119EIGEN_STRONG_INLINE Packet16h pcast<Packet16s, Packet16h>(
const Packet16s& a) {
120 return _mm256_cvtepi16_ph(a);
123EIGEN_STRONG_INLINE Packet8h pcast<Packet8s, Packet8h>(
const Packet8s& a) {
124 return _mm_cvtepi16_ph(a);
Namespace containing all symbols from the Eigen library.
Definition B01_Experimental.dox:1