use super::*;
pick! {
if #[cfg(target_feature="sse2")] {
#[derive(Default, Clone, Copy, PartialEq)]
#[repr(C, align(16))]
pub struct f64x2 { pub(crate) sse: m128d }
} else if #[cfg(target_feature="simd128")] {
use core::arch::wasm32::*;
#[derive(Clone, Copy)]
#[repr(transparent)]
pub struct f64x2 { pub(crate) simd: v128 }
impl Default for f64x2 {
fn default() -> Self {
Self::splat(0.0)
}
}
impl PartialEq for f64x2 {
fn eq(&self, other: &Self) -> bool {
u64x2_all_true(f64x2_eq(self.simd, other.simd))
}
}
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
use core::arch::aarch64::*;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct f64x2 { pub(crate) neon: float64x2_t }
impl Default for f64x2 {
#[inline]
fn default() -> Self {
unsafe { Self { neon: vdupq_n_f64(0.0)} }
}
}
impl PartialEq for f64x2 {
#[inline]
fn eq(&self, other: &Self) -> bool {
unsafe
{ let e = vceqq_f64(self.neon, other.neon);
vgetq_lane_u64(e,0) == u64::MAX && vgetq_lane_u64(e,1) == u64::MAX
}
}
}
} else {
#[derive(Default, Clone, Copy, PartialEq)]
#[repr(C, align(16))]
pub struct f64x2 { pub(crate) arr: [f64;2] }
}
}
macro_rules! const_f64_as_f64x2 {
($i:ident, $f:expr) => {
#[allow(non_upper_case_globals)]
pub const $i: f64x2 = f64x2::new([$f; 2]);
};
}
impl_simd! {
unsafe {
T = f64,
N = 2,
Simd = f64x2,
optional_type_x86_inner { X86Inner = __m128d },
optional_type_arm_inner { ArmInner = float64x2_t },
optional_type_wasm_inner { WasmInner = v128 },
}
#[inline]
fn simd_eq(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: cmp_eq_mask_m128d(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_eq(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vreinterpretq_f64_u64(vceqq_f64(self.neon, rhs.neon)) }}
} else {
Self { arr: [
if self.arr[0] == rhs.arr[0] { f64::from_bits(u64::MAX) } else { 0.0 },
if self.arr[1] == rhs.arr[1] { f64::from_bits(u64::MAX) } else { 0.0 },
]}
}
}
}
#[inline]
fn simd_ne(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: cmp_neq_mask_m128d(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_ne(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vreinterpretq_f64_u64(vceqq_f64(self.neon, rhs.neon)) }.not() }
} else {
Self { arr: [
if self.arr[0] != rhs.arr[0] { f64::from_bits(u64::MAX) } else { 0.0 },
if self.arr[1] != rhs.arr[1] { f64::from_bits(u64::MAX) } else { 0.0 },
]}
}
}
}
#[inline]
fn simd_lt(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: cmp_lt_mask_m128d(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_lt(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vreinterpretq_f64_u64(vcltq_f64(self.neon, rhs.neon)) }}
} else {
Self { arr: [
if self.arr[0] < rhs.arr[0] { f64::from_bits(u64::MAX) } else { 0.0 },
if self.arr[1] < rhs.arr[1] { f64::from_bits(u64::MAX) } else { 0.0 },
]}
}
}
}
#[inline]
fn simd_gt(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="avx")] {
Self { sse: cmp_op_mask_m128d::<{cmp_op!(GreaterThanOrdered)}>(self.sse, rhs.sse) }
} else if #[cfg(target_feature="sse2")] {
Self { sse: cmp_gt_mask_m128d(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_gt(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vreinterpretq_f64_u64(vcgtq_f64(self.neon, rhs.neon)) }}
} else {
Self { arr: [
if self.arr[0] > rhs.arr[0] { f64::from_bits(u64::MAX) } else { 0.0 },
if self.arr[1] > rhs.arr[1] { f64::from_bits(u64::MAX) } else { 0.0 },
]}
}
}
}
#[inline]
fn simd_le(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: cmp_le_mask_m128d(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_le(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vreinterpretq_f64_u64(vcleq_f64(self.neon, rhs.neon)) }}
} else {
Self { arr: [
if self.arr[0] <= rhs.arr[0] { f64::from_bits(u64::MAX) } else { 0.0 },
if self.arr[1] <= rhs.arr[1] { f64::from_bits(u64::MAX) } else { 0.0 },
]}
}
}
}
#[inline]
fn simd_ge(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: cmp_ge_mask_m128d(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_ge(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vreinterpretq_f64_u64(vcgeq_f64(self.neon, rhs.neon)) }}
} else {
Self { arr: [
if self.arr[0] >= rhs.arr[0] { f64::from_bits(u64::MAX) } else { 0.0 },
if self.arr[1] >= rhs.arr[1] { f64::from_bits(u64::MAX) } else { 0.0 },
]}
}
}
}
#[inline]
pub fn bitselect(self, if_one: Self, if_zero: Self) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
Self {
sse: bitor_m128d(
bitand_m128d(if_one.sse, self.sse),
bitandnot_m128d(self.sse, if_zero.sse),
),
}
} else if #[cfg(target_feature="simd128")] {
Self { simd: v128_bitselect(if_one.simd, if_zero.simd, self.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vbslq_f64(vreinterpretq_u64_f64(self.neon), if_one.neon, if_zero.neon) }}
} else {
generic_bit_blend(self, if_one, if_zero)
}
}
}
#[inline]
pub fn select(self, if_true: Self, if_false: Self) -> Self {
pick! {
if #[cfg(target_feature="sse4.1")] {
Self { sse: blend_varying_m128d(if_false.sse, if_true.sse, self.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: v128_bitselect(if_true.simd, if_false.simd, self.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vbslq_f64(vreinterpretq_u64_f64(self.neon), if_true.neon, if_false.neon) }}
} else {
generic_bit_blend(self, if_true, if_false)
}
}
}
#[inline]
pub fn to_bitmask(self) -> u32 {
pick! {
if #[cfg(target_feature="sse2")] {
move_mask_m128d(self.sse) as u32
} else if #[cfg(target_feature="simd128")] {
u64x2_bitmask(self.simd) as u32
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe
{
let e = vreinterpretq_u64_f64(self.neon);
(vgetq_lane_u64(e,0) >> 63 | ((vgetq_lane_u64(e,1) >> 62) & 0x2)) as u32
}
} else {
(((self.arr[0].to_bits() as i64) < 0) as u32) |
(((self.arr[1].to_bits() as i64) < 0) as u32) << 1
}
}
}
#[inline]
pub fn any(self) -> bool {
pick! {
if #[cfg(target_feature="simd128")] {
v128_any_true(self.simd)
} else {
self.to_bitmask() != 0
}
}
}
#[inline]
pub fn all(self) -> bool {
pick! {
if #[cfg(target_feature="simd128")] {
u64x2_all_true(self.simd)
} else {
self.to_bitmask() == 0b11
}
}
}
#[inline]
pub fn transpose(data: [f64x2; 2]) -> [f64x2; 2] {
pick! {
if #[cfg(any(
target_feature="sse2",
all(target_feature="neon",target_arch="aarch64"),
target_feature="simd128",
))] {
[data[0].unpack_lo(data[1]), data[0].unpack_hi(data[1])]
} else {
let [x, y, z, w]: [f64; 4] = cast(data);
cast([x, z, y, w])
}
}
}
}
impl_simd_float! {
unsafe {
T = f64,
N = 2,
Simd = f64x2,
UnsignedT = u64,
UnsignedSimd = u64x2,
}
old_powf_simd_fn_name = pow_f64x2,
#[inline]
fn neg(self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse")] {
Self { sse: bitxor_m128d(self.sse, Self::splat(-0.0).sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_neg(self.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vnegq_f64(self.neon) }}
} else {
Self { arr: [
-self.arr[0],
-self.arr[1],
]}
}
}
}
#[inline]
fn not(self) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: self.sse.not() }
} else if #[cfg(target_feature="simd128")] {
Self { simd: v128_not(self.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vreinterpretq_f64_u32(vmvnq_u32(vreinterpretq_u32_f64(self.neon))) }}
} else {
Self { arr: [
f64::from_bits(!self.arr[0].to_bits()),
f64::from_bits(!self.arr[1].to_bits()),
]}
}
}
}
#[inline]
fn add(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: add_m128d(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_add(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe { Self { neon: vaddq_f64(self.neon, rhs.neon) } }
} else {
Self { arr: [
self.arr[0] + rhs.arr[0],
self.arr[1] + rhs.arr[1],
]}
}
}
}
#[inline]
fn sub(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: sub_m128d(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_sub(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe { Self { neon: vsubq_f64(self.neon, rhs.neon) } }
} else {
Self { arr: [
self.arr[0] - rhs.arr[0],
self.arr[1] - rhs.arr[1],
]}
}
}
}
#[inline]
fn mul(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: mul_m128d(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_mul(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vmulq_f64(self.neon, rhs.neon) }}
} else {
Self { arr: [
self.arr[0] * rhs.arr[0],
self.arr[1] * rhs.arr[1],
]}
}
}
}
#[inline]
fn div(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: div_m128d(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_div(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vdivq_f64(self.neon, rhs.neon) }}
} else {
Self { arr: [
self.arr[0] / rhs.arr[0],
self.arr[1] / rhs.arr[1],
]}
}
}
}
#[inline]
fn rem(self, rhs: Self) -> Self::Output {
Self::new([
self.to_array()[0] % rhs.to_array()[0],
self.to_array()[1] % rhs.to_array()[1],
])
}
#[inline]
fn bitand(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: bitand_m128d(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: v128_and(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vreinterpretq_f64_u64(vandq_u64(vreinterpretq_u64_f64(self.neon), vreinterpretq_u64_f64(rhs.neon))) }}
} else {
Self { arr: [
f64::from_bits(self.arr[0].to_bits() & rhs.arr[0].to_bits()),
f64::from_bits(self.arr[1].to_bits() & rhs.arr[1].to_bits()),
]}
}
}
}
#[inline]
fn bitor(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: bitor_m128d(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: v128_or(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vreinterpretq_f64_u64(vorrq_u64(vreinterpretq_u64_f64(self.neon), vreinterpretq_u64_f64(rhs.neon))) }}
} else {
Self { arr: [
f64::from_bits(self.arr[0].to_bits() | rhs.arr[0].to_bits()),
f64::from_bits(self.arr[1].to_bits() | rhs.arr[1].to_bits()),
]}
}
}
}
#[inline]
fn bitxor(self, rhs: Self) -> Self::Output {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: bitxor_m128d(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: v128_xor(self.simd, rhs.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vreinterpretq_f64_u64(veorq_u64(vreinterpretq_u64_f64(self.neon), vreinterpretq_u64_f64(rhs.neon))) }}
} else {
Self { arr: [
f64::from_bits(self.arr[0].to_bits() ^ rhs.arr[0].to_bits()),
f64::from_bits(self.arr[1].to_bits() ^ rhs.arr[1].to_bits()),
]}
}
}
}
#[inline]
pub fn reduce_add(self) -> f64 {
pick! {
if #[cfg(target_feature="ssse3")] {
let a = add_horizontal_m128d(self.sse, self.sse);
a.to_array()[0]
} else if #[cfg(any(target_feature="sse2", target_feature="simd128"))] {
let a: [f64;2] = cast(self);
a.iter().sum()
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe { vgetq_lane_f64(self.neon,0) + vgetq_lane_f64(self.neon,1) }
} else {
self.arr.iter().sum()
}
}
}
#[inline]
pub fn reduce_mul(self) -> f64 {
let arr: [f64; 2] = cast(self);
arr.iter().product()
}
#[inline]
pub fn is_nan(self) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: cmp_unord_mask_m128d(self.sse, self.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_ne(self.simd, self.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vreinterpretq_f64_u64(vceqq_f64(self.neon, self.neon)) }.not() }
} else {
Self { arr: [
if self.arr[0].is_nan() { f64::from_bits(u64::MAX) } else { 0.0 },
if self.arr[1].is_nan() { f64::from_bits(u64::MAX) } else { 0.0 },
]}
}
}
}
#[inline]
pub fn is_inf(self) -> Self {
let shifted_inf = u64x2::from(0xFFE0000000000000);
let u: u64x2 = cast(self);
let shift_u = u << 1_u64;
let out = (shift_u).simd_eq(shifted_inf);
cast(out)
}
#[inline]
pub fn is_finite(self) -> Self {
let shifted_exp_mask = u64x2::from(0xFFE0000000000000);
let u: u64x2 = cast(self);
let shift_u = u << 1_u64;
let out = !(shift_u & shifted_exp_mask).simd_eq(shifted_exp_mask);
cast(out)
}
#[inline]
pub fn is_sign_positive(self) -> Self {
pick! {
if #[cfg(any(target_feature = "sse4.1", not(target_feature = "sse2")))] {
const SIGN_MASK: u64x2 = u64x2::splat((-0.0_f64).to_bits());
let bits = cast::<f64x2, u64x2>(self);
let sign = bits & SIGN_MASK;
let result = sign.simd_eq(u64x2::ZERO);
cast::<u64x2, f64x2>(result)
} else {
let bits = cast::<f64x2, u64x2>(self);
let sign = bits >> 63;
let sign = cast::<u64x2, f64x2>(sign);
sign.simd_eq(f64x2::ZERO)
}
}
}
#[inline]
pub fn is_sign_negative(self) -> Self {
pick! {
if #[cfg(any(target_feature = "sse4.1", not(target_feature = "sse2")))] {
const SIGN_MASK: u64x2 = u64x2::splat((-0.0_f64).to_bits());
let bits = cast::<f64x2, u64x2>(self);
let sign = bits & SIGN_MASK;
let result = sign.simd_eq(SIGN_MASK);
cast::<u64x2, f64x2>(result)
} else {
let bits = cast::<f64x2, u64x2>(self);
let sign = bits >> 63;
let sign = cast::<u64x2, f64x2>(sign);
sign.simd_ne(f64x2::ZERO)
}
}
}
#[inline]
pub fn recip(self) -> Self {
Self::ONE / self
}
#[inline]
pub fn recip_sqrt(self) -> Self {
Self::ONE / self.sqrt()
}
#[inline]
pub fn max(self, rhs: Self) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
rhs.is_nan().select(self, Self { sse: max_m128d(self.sse, rhs.sse) })
} else if #[cfg(target_feature="simd128")] {
Self {
simd: v128_bitselect(
rhs.simd,
f64x2_pmax(self.simd, rhs.simd),
f64x2_ne(self.simd, self.simd), )
}
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vmaxnmq_f64(self.neon, rhs.neon) }}
} else {
Self { arr: [
self.arr[0].max(rhs.arr[0]),
self.arr[1].max(rhs.arr[1]),
]}
}
}
}
#[inline]
pub fn fast_max(self, rhs: Self) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: max_m128d(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self {
simd: f64x2_pmax(self.simd, rhs.simd),
}
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vmaxq_f64(self.neon, rhs.neon) }}
} else {
Self { arr: [
if self.arr[0] < rhs.arr[0] { rhs.arr[0] } else { self.arr[0] },
if self.arr[1] < rhs.arr[1] { rhs.arr[1] } else { self.arr[1] },
]}
}
}
}
#[inline]
pub fn min(self, rhs: Self) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
rhs.is_nan().select(self, Self { sse: min_m128d(self.sse, rhs.sse) })
} else if #[cfg(target_feature="simd128")] {
Self {
simd: v128_bitselect(
rhs.simd,
f64x2_pmin(self.simd, rhs.simd),
f64x2_ne(self.simd, self.simd), )
}
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vminnmq_f64(self.neon, rhs.neon) }}
} else {
Self { arr: [
self.arr[0].min(rhs.arr[0]),
self.arr[1].min(rhs.arr[1]),
]}
}
}
}
#[inline]
pub fn fast_min(self, rhs: Self) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: min_m128d(self.sse, rhs.sse) }
} else if #[cfg(target_feature="simd128")] {
Self {
simd: f64x2_pmin(self.simd, rhs.simd),
}
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vminq_f64(self.neon, rhs.neon) }}
} else {
Self { arr: [
if self.arr[0] < rhs.arr[0] { self.arr[0] } else { rhs.arr[0] },
if self.arr[1] < rhs.arr[1] { self.arr[1] } else { rhs.arr[1] },
]}
}
}
}
#[inline]
pub fn clamp(self, min: Self, max: Self) -> Self {
pick! {
if #[cfg(any(
target_feature="simd128",
all(target_feature="neon",target_arch="aarch64"),
))] {
self.fast_clamp(min, max)
} else {
self.fast_clamp(min, max) | min.is_nan() | max.is_nan()
}
}
}
#[inline]
pub fn fast_clamp(self, min: Self, max: Self) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: max_m128d(min.sse, min_m128d(max.sse, self.sse)) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_max(f64x2_min(self.simd, max.simd), min.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))] {
unsafe { Self { neon: vmaxq_f64(vminq_f64(self.neon, max.neon), min.neon) } }
} else {
let mut result = self;
result = result.simd_gt(max).select(max, result);
result = result.simd_lt(min).select(min, result);
result
}
}
}
#[inline]
pub fn abs(self) -> Self {
pick! {
if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_abs(self.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vabsq_f64(self.neon) }}
} else {
let non_sign_bits = f64x2::from(f64::from_bits(i64::MAX as u64));
self & non_sign_bits
}
}
}
#[inline]
pub fn floor(self) -> Self {
pick! {
if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_floor(self.simd) }
} else if #[cfg(target_feature="sse4.1")] {
Self { sse: floor_m128d(self.sse) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vrndmq_f64(self.neon) }}
} else if #[cfg(feature="std")] {
let base: [f64; 2] = cast(self);
cast(base.map(|val| val.floor()))
} else {
let base: [f64; 2] = cast(self);
let rounded: [f64; 2] = cast(self.round());
cast([
if base[0] < rounded[0] { rounded[0] - 1.0 } else { rounded[0] },
if base[1] < rounded[1] { rounded[1] - 1.0 } else { rounded[1] },
])
}
}
}
#[inline]
pub fn ceil(self) -> Self {
pick! {
if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_ceil(self.simd) }
} else if #[cfg(target_feature="sse4.1")] {
Self { sse: ceil_m128d(self.sse) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vrndpq_f64(self.neon) }}
} else if #[cfg(feature="std")] {
let base: [f64; 2] = cast(self);
cast(base.map(|val| val.ceil()))
} else {
let base: [f64; 2] = cast(self);
let rounded: [f64; 2] = cast(self.round());
cast([
if base[0] > rounded[0] { rounded[0] + 1.0 } else { rounded[0] },
if base[1] > rounded[1] { rounded[1] + 1.0 } else { rounded[1] },
])
}
}
}
#[inline]
pub fn round(self) -> Self {
pick! {
if #[cfg(target_feature="sse4.2")] {
const_f64_as_f64x2!(HALF_NEXT_DOWN, 0.5_f64.next_down());
const_f64_as_f64x2!(BOUNDS_LIMIT, 4503599627370496.0);
let self_abs = self.abs();
let adjusted_self = self_abs + Self::HALF;
let result_abs = Self { sse: round_m128d::<{round_op!(Zero)}>(adjusted_self.sse) };
let result_abs = result_abs & self_abs.simd_ne(HALF_NEXT_DOWN);
let bounds_mask: Self = cast(cmp_gt_mask_i64_m128i(cast(BOUNDS_LIMIT), cast(self_abs)));
bounds_mask.abs().bitselect(result_abs, self)
} else if #[cfg(target_feature="simd128")] {
const_f64_as_f64x2!(HALF_NEXT_DOWN, 0.5_f64.next_down());
const_f64_as_f64x2!(BOUNDS_LIMIT, 4503599627370496.0);
let self_abs = self.abs();
let adjusted_self = self_abs + Self::HALF;
let result_abs = Self { simd: f64x2_trunc(adjusted_self.simd) };
let result_abs = result_abs & self_abs.simd_ne(HALF_NEXT_DOWN);
let bounds_mask = Self { simd: i64x2_lt(self_abs.simd, BOUNDS_LIMIT.simd) };
bounds_mask.abs().bitselect(result_abs, self)
} else {
const_f64_as_f64x2!(HALF_NEXT_DOWN, 0.5_f64.next_down());
const_f64_as_f64x2!(BOUNDS_LIMIT, 4503599627370496.0);
let self_abs = self.abs();
let adjusted_self = (self_abs + Self::HALF).to_array();
let result_abs = Self::new([
adjusted_self[0] as u64 as f64,
adjusted_self[1] as u64 as f64,
]);
let result_abs = result_abs & self_abs.simd_ne(HALF_NEXT_DOWN);
let bounds_mask: Self = cast(cast::<_, i64x2>(self_abs).simd_lt(cast::<_, i64x2>(BOUNDS_LIMIT)));
bounds_mask.abs().bitselect(result_abs, self)
}
}
}
#[inline]
pub fn round_int(self) -> i64x2 {
pick! {
if #[cfg(all(target_feature="avx512dq", target_feature="avx512vl"))] {
#[cfg(target_arch = "x86")]
use core::arch::x86::_mm_cvtpd_epi64;
#[cfg(target_arch = "x86_64")]
use core::arch::x86_64::_mm_cvtpd_epi64;
let non_nan_mask = self.simd_eq(self);
let non_nan = self & non_nan_mask;
let flip_to_max: i64x2 = cast(self.simd_ge(Self::splat(9223372036854775808.0)));
let cast: i64x2 = cast(m128i(unsafe { _mm_cvtpd_epi64(non_nan.sse.0) }));
flip_to_max ^ cast
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
cast(Self { neon: unsafe { vreinterpretq_f64_s64(vcvtnq_s64_f64(self.neon)) } })
} else {
let rounded: [f64; 2] = cast(self.round_ties_even());
cast([rounded[0] as i64, rounded[1] as i64])
}
}
}
#[inline]
pub fn fast_round_int(self) -> i64x2 {
pick! {
if #[cfg(all(target_feature="avx512dq", target_feature="avx512vl"))] {
#[cfg(target_arch = "x86")]
use core::arch::x86::_mm_cvtpd_epi64;
#[cfg(target_arch = "x86_64")]
use core::arch::x86_64::_mm_cvtpd_epi64;
cast(m128i(unsafe { _mm_cvtpd_epi64(self.sse.0) }))
} else {
self.round_int()
}
}
}
#[inline]
pub fn round_ties_even(self) -> Self {
pick! {
if #[cfg(target_feature="sse4.1")] {
Self { sse: round_m128d::<{round_op!(Nearest)}>(self.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_nearest(self.simd) }
} else {
const SIGN_MASK: f64x2 = f64x2::splat(-0.0);
const MAGIC_VALUE: f64x2 = f64x2::splat(f64::from_bits(0x43300000_00000000));
let self_sign = self & SIGN_MASK;
let magic_value = MAGIC_VALUE | self_sign;
let result = self + magic_value - magic_value;
let bounds_mask = self.abs().simd_le(MAGIC_VALUE);
bounds_mask.abs().select(result, self)
}
}
}
#[inline]
pub fn trunc(self) -> Self {
pick! {
if #[cfg(target_feature="sse4.1")] {
Self { sse: round_m128d::<{round_op!(Zero)}>(self.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_trunc(self.simd) }
} else {
let array: [f64; 2] = cast(self);
let result: Self = cast([
array[0] as i64 as f64,
array[1] as i64 as f64,
]);
const BOUNDS_LIMIT: i64 = 18e15_f64.to_bits().cast_signed();
let bounds_mask: Self = cast(cast::<f64x2, i64x2>(self.abs()).simd_lt(i64x2::splat(BOUNDS_LIMIT)));
bounds_mask.abs().select(result, self)
}
}
}
#[inline]
pub fn trunc_int(self) -> i64x2 {
pick! {
if #[cfg(all(target_feature="avx512dq", target_feature="avx512vl"))] {
#[cfg(target_arch = "x86")]
use core::arch::x86::_mm_cvttpd_epi64;
#[cfg(target_arch = "x86_64")]
use core::arch::x86_64::_mm_cvttpd_epi64;
let non_nan_mask = self.simd_eq(self);
let non_nan = self & non_nan_mask;
let flip_to_max: i64x2 = cast(self.simd_ge(Self::splat(9223372036854775808.0)));
let cast: i64x2 = cast(m128i(unsafe { _mm_cvttpd_epi64(non_nan.sse.0) }));
flip_to_max ^ cast
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
cast(Self { neon: unsafe { vreinterpretq_f64_s64(vcvtq_s64_f64(self.neon)) } })
} else {
let n: [f64;2] = cast(self);
cast([n[0] as i64, n[1] as i64])
}
}
}
#[inline]
pub fn fast_trunc_int(self) -> i64x2 {
pick! {
if #[cfg(all(target_feature="avx512dq", target_feature="avx512vl"))] {
#[cfg(target_arch = "x86")]
use core::arch::x86::_mm_cvttpd_epi64;
#[cfg(target_arch = "x86_64")]
use core::arch::x86_64::_mm_cvttpd_epi64;
cast(m128i(unsafe { _mm_cvttpd_epi64(self.sse.0) }))
} else {
self.trunc_int()
}
}
}
#[inline]
pub fn mul_add(self, a: Self, b: Self) -> Self {
pick! {
if #[cfg(all(target_feature="fma"))] {
Self { sse: fused_mul_add_m128d(self.sse, a.sse, b.sse) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))] {
unsafe { Self { neon: vfmaq_f64(b.neon, self.neon, a.neon) } }
} else {
(self * a) + b
}
}
}
#[inline]
pub fn mul_sub(self, a: Self, b: Self) -> Self {
pick! {
if #[cfg(all(target_feature="fma"))] {
Self { sse: fused_mul_sub_m128d(self.sse, a.sse, b.sse) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))] {
unsafe { Self { neon: vfmaq_f64(vnegq_f64(b.neon), self.neon, a.neon) } }
} else {
(self * a) - b
}
}
}
#[inline]
pub fn mul_neg_add(self, a: Self, b: Self) -> Self {
pick! {
if #[cfg(all(target_feature="fma"))] {
Self { sse: fused_mul_neg_add_m128d(self.sse, a.sse, b.sse) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))] {
unsafe { Self { neon: vfmsq_f64(b.neon, self.neon, a.neon) } }
} else {
b - (self * a)
}
}
}
#[inline]
pub fn mul_neg_sub(self, a: Self, b: Self) -> Self {
pick! {
if #[cfg(all(target_feature="fma"))] {
Self { sse: fused_mul_neg_sub_m128d(self.sse, a.sse, b.sse) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))] {
unsafe { Self { neon: vnegq_f64(vfmaq_f64(b.neon, self.neon, a.neon)) } }
} else {
-(self * a) - b
}
}
}
#[inline]
pub fn powf_simd(self, n: Self) -> Self {
const_f64_as_f64x2!(ln2d_hi, 0.693145751953125);
const_f64_as_f64x2!(ln2d_lo, 1.42860682030941723212E-6);
const_f64_as_f64x2!(P0log, 2.0039553499201281259648E1);
const_f64_as_f64x2!(P1log, 5.7112963590585538103336E1);
const_f64_as_f64x2!(P2log, 6.0949667980987787057556E1);
const_f64_as_f64x2!(P3log, 2.9911919328553073277375E1);
const_f64_as_f64x2!(P4log, 6.5787325942061044846969E0);
const_f64_as_f64x2!(P5log, 4.9854102823193375972212E-1);
const_f64_as_f64x2!(P6log, 4.5270000862445199635215E-5);
const_f64_as_f64x2!(Q0log, 6.0118660497603843919306E1);
const_f64_as_f64x2!(Q1log, 2.1642788614495947685003E2);
const_f64_as_f64x2!(Q2log, 3.0909872225312059774938E2);
const_f64_as_f64x2!(Q3log, 2.2176239823732856465394E2);
const_f64_as_f64x2!(Q4log, 8.3047565967967209469434E1);
const_f64_as_f64x2!(Q5log, 1.5062909083469192043167E1);
const_f64_as_f64x2!(p2, 1.0 / 2.0); const_f64_as_f64x2!(p3, 1.0 / 6.0);
const_f64_as_f64x2!(p4, 1.0 / 24.0);
const_f64_as_f64x2!(p5, 1.0 / 120.0);
const_f64_as_f64x2!(p6, 1.0 / 720.0);
const_f64_as_f64x2!(p7, 1.0 / 5040.0);
const_f64_as_f64x2!(p8, 1.0 / 40320.0);
const_f64_as_f64x2!(p9, 1.0 / 362880.0);
const_f64_as_f64x2!(p10, 1.0 / 3628800.0);
const_f64_as_f64x2!(p11, 1.0 / 39916800.0);
const_f64_as_f64x2!(p12, 1.0 / 479001600.0);
const_f64_as_f64x2!(p13, 1.0 / 6227020800.0);
let x1 = self.abs();
let x = x1.fraction_2();
let mask = x.simd_gt(f64x2::SQRT_2 * f64x2::HALF);
let x = (!mask).select(x + x, x);
let x = x - f64x2::ONE;
let x2 = x * x;
let px = polynomial_6!(x, P0log, P1log, P2log, P3log, P4log, P5log, P6log);
let px = px * x * x2;
let qx = polynomial_6n!(x, Q0log, Q1log, Q2log, Q3log, Q4log, Q5log);
let lg1 = px / qx;
let ef = x1.exponent();
let ef = mask.select(ef + f64x2::ONE, ef);
let e1 = (ef * n).round_ties_even();
let yr = ef.mul_sub(n, e1);
let lg = f64x2::HALF.mul_neg_add(x2, x) + lg1;
let x2err = (f64x2::HALF * x).mul_sub(x, f64x2::HALF * x2);
let lg_err = f64x2::HALF.mul_add(x2, lg - x) - lg1;
let e2 = (lg * n * f64x2::LOG2_E).round_ties_even();
let v = lg.mul_sub(n, e2 * ln2d_hi);
let v = e2.mul_neg_add(ln2d_lo, v);
let v = v - (lg_err + x2err).mul_sub(n, yr * f64x2::LN_2);
let x = v;
let e3 = (x * f64x2::LOG2_E).round_ties_even();
let x = e3.mul_neg_add(f64x2::LN_2, x);
let z =
polynomial_13!(x, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13)
+ f64x2::ONE;
let ee = e1 + e2 + e3;
let ei = cast::<_, i64x2>(ee.round_int());
let ej = cast::<_, i64x2>(ei + (cast::<_, i64x2>(z) >> 52));
let overflow = cast::<_, f64x2>(!ej.simd_lt(i64x2::splat(0x07FF)))
| ee.simd_gt(f64x2::splat(3000.0));
let underflow = cast::<_, f64x2>(!ej.simd_gt(i64x2::splat(0x000)))
| ee.simd_lt(f64x2::splat(-3000.0));
let z = cast::<_, f64x2>(cast::<_, i64x2>(z) + (ei << 52));
let z = if (overflow | underflow).any() {
let z = underflow.select(f64x2::ZERO, z);
overflow.select(Self::infinity(), z)
} else {
z
};
let x_zero = self.is_zero_or_subnormal();
let z = x_zero.select(
n.simd_lt(f64x2::ZERO).select(
Self::infinity(),
n.simd_eq(f64x2::ZERO).select(f64x2::ONE, f64x2::ZERO),
),
z,
);
let x_sign = self.is_sign_negative();
let z = if x_sign.any() {
let yi = n.simd_eq(n.round_ties_even());
let y_odd = cast::<i64x2, f64x2>(n.round_int() << 63);
let z1 = yi
.select(z | y_odd, self.simd_eq(Self::ZERO).select(z, Self::nan_pow()));
x_sign.select(z1, z)
} else {
z
};
let x_finite = self.is_finite();
let y_finite = n.is_finite();
let e_finite = ee.is_finite();
if (x_finite & y_finite & (e_finite | x_zero)).all() {
return z;
}
(self.is_nan() | n.is_nan()).select(self + n, z)
}
#[inline]
pub fn sqrt(self) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: sqrt_m128d(self.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_sqrt(self.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))]{
unsafe {Self { neon: vsqrtq_f64(self.neon) }}
} else if #[cfg(feature="std")] {
Self { arr: [
self.arr[0].sqrt(),
self.arr[1].sqrt(),
]}
} else {
Self { arr: [
software_sqrt(self.arr[0]),
software_sqrt(self.arr[1]),
]}
}
}
}
#[inline]
pub fn exp(self) -> Self {
const_f64_as_f64x2!(P2, 1.0 / 2.0);
const_f64_as_f64x2!(P3, 1.0 / 6.0);
const_f64_as_f64x2!(P4, 1.0 / 24.0);
const_f64_as_f64x2!(P5, 1.0 / 120.0);
const_f64_as_f64x2!(P6, 1.0 / 720.0);
const_f64_as_f64x2!(P7, 1.0 / 5040.0);
const_f64_as_f64x2!(P8, 1.0 / 40320.0);
const_f64_as_f64x2!(P9, 1.0 / 362880.0);
const_f64_as_f64x2!(P10, 1.0 / 3628800.0);
const_f64_as_f64x2!(P11, 1.0 / 39916800.0);
const_f64_as_f64x2!(P12, 1.0 / 479001600.0);
const_f64_as_f64x2!(P13, 1.0 / 6227020800.0);
const_f64_as_f64x2!(LN2D_HI, 0.693145751953125);
const_f64_as_f64x2!(LN2D_LO, 1.42860682030941723212E-6);
let max_x = f64x2::from(709.783);
let min_x = f64x2::from(-744.79);
let finite = self.is_finite();
let neg_underflow = self.simd_lt(min_x) & finite;
if neg_underflow.all() {
return Self::ZERO;
}
let max_r = f64x2::from(1023.0);
let r = (self * Self::LOG2_E).round_ties_even();
let big = r.simd_gt(max_r);
let r_safe = big.select(max_r, r);
let excess = r - max_r;
let excess = big.select(excess, Self::ZERO);
let scale = Self::vm_pow2n(excess);
let x = r.mul_neg_add(LN2D_HI, self);
let x = r.mul_neg_add(LN2D_LO, x);
let z =
polynomial_13!(x, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13);
let n2 = Self::vm_pow2n(r_safe);
let z = (z + Self::ONE) * scale * n2;
let nan_mask = self.is_nan();
let mut result = nan_mask.select(Self::nan_pow(), z);
let pos_overflow = self.simd_gt(max_x) & finite;
result = pos_overflow.select(Self::infinity(), result);
result = neg_underflow.select(Self::ZERO, result);
let pos_inf = !finite & !self.is_sign_negative() & !nan_mask;
result = pos_inf.select(Self::infinity(), result);
let neg_inf = !finite & self.is_sign_negative() & !nan_mask;
result = neg_inf.select(Self::ZERO, result);
result
}
#[inline]
pub fn exp2(self) -> Self {
const_f64_as_f64x2!(P2, 1.0 / 2.0);
const_f64_as_f64x2!(P3, 1.0 / 6.0);
const_f64_as_f64x2!(P4, 1.0 / 24.0);
const_f64_as_f64x2!(P5, 1.0 / 120.0);
const_f64_as_f64x2!(P6, 1.0 / 720.0);
const_f64_as_f64x2!(P7, 1.0 / 5040.0);
const_f64_as_f64x2!(P8, 1.0 / 40320.0);
const_f64_as_f64x2!(P9, 1.0 / 362880.0);
const_f64_as_f64x2!(P10, 1.0 / 3628800.0);
let max_x = f64x2::from(1023.9999999999999);
let min_x = f64x2::from(-1074.5);
let finite = self.is_finite();
let neg_underflow = self.simd_lt(min_x) & finite;
if neg_underflow.all() {
return Self::ZERO;
}
let round = self.round_ties_even();
let max_r = f64x2::from(1023.0);
let big = round.simd_gt(max_r);
let r_safe = big.select(max_r, round);
let excess = round - max_r;
let excess = big.select(excess, Self::ZERO);
let scale = Self::vm_pow2n(excess);
let fract = (self - round) * Self::LN_2;
let fract_partial_exp2 =
polynomial_8!(fract, P2, P3, P4, P5, P6, P7, P8, P9, P10);
let fract2 = fract * fract;
let fract_exp2 = fract_partial_exp2.mul_add(fract2, fract) + Self::ONE;
let n2 = Self::vm_pow2n(r_safe);
let result = fract_exp2 * scale * n2;
let nan_mask = self.is_nan();
let mut result = nan_mask.select(Self::nan_pow(), result);
let pos_overflow = self.simd_gt(max_x) & finite;
result = pos_overflow.select(Self::infinity(), result);
result = neg_underflow.select(Self::ZERO, result);
let pos_inf = !finite & !self.is_sign_negative() & !nan_mask;
result = pos_inf.select(Self::infinity(), result);
let neg_inf = !finite & self.is_sign_negative() & !nan_mask;
result = neg_inf.select(Self::ZERO, result);
result
}
#[inline]
pub fn ln(self) -> Self {
const_f64_as_f64x2!(P0, 7.70838733755885391666E0);
const_f64_as_f64x2!(P1, 1.79368678507819816313E1);
const_f64_as_f64x2!(P2, 1.44989225341610930846E1);
const_f64_as_f64x2!(P3, 4.70579119878881725854E0);
const_f64_as_f64x2!(P4, 4.97494994976747001425E-1);
const_f64_as_f64x2!(P5, 1.01875663804580931796E-4);
const_f64_as_f64x2!(Q0, 2.31251620126765340583E1);
const_f64_as_f64x2!(Q1, 7.11544750618563894466E1);
const_f64_as_f64x2!(Q2, 8.29875266912776603211E1);
const_f64_as_f64x2!(Q3, 4.52279145837532221105E1);
const_f64_as_f64x2!(Q4, 1.12873587189167450590E1);
const_f64_as_f64x2!(LN2F_HI, f64::from_bits(0x3FE62E42FEE00000));
const_f64_as_f64x2!(LN2F_LO, f64::from_bits(0x3DEA39EF35793C76));
const_f64_as_f64x2!(VM_SQRT2, 1.414213562373095048801);
const_f64_as_f64x2!(VM_SMALLEST_NORMAL, 2.2250738585072014E-308);
let x1 = self;
let x = Self::fraction_2(x1);
let e = Self::exponent(x1);
let mask = x.simd_gt(VM_SQRT2 * f64x2::HALF);
let x = (!mask).select(x + x, x);
let fe = mask.select(e + Self::ONE, e);
let x = x - Self::ONE;
let px = polynomial_5!(x, P0, P1, P2, P3, P4, P5);
let x2 = x * x;
let px = x2 * x * px;
let qx = polynomial_5n!(x, Q0, Q1, Q2, Q3, Q4);
let res = px / qx;
let res = fe.mul_add(LN2F_LO, res);
let res = res + x2.mul_neg_add(f64x2::HALF, x);
let res = fe.mul_add(LN2F_HI, res);
let overflow = !self.is_finite();
let underflow = x1.simd_lt(VM_SMALLEST_NORMAL);
let mask = overflow | underflow;
if !mask.any() {
res
} else {
let is_zero = self.is_zero_or_subnormal();
let res = underflow.select(Self::nan_log(), res);
let res = is_zero.select(-Self::infinity(), res);
let res = overflow.select(self, res);
let res = (!self.is_finite() & self.is_sign_negative())
.select(Self::nan_log(), res);
res
}
}
#[inline]
pub fn cbrt(self) -> Self {
let a = self.abs();
let zero = a.simd_eq(Self::ZERO);
if zero.all() {
return self; }
let inf = a.is_inf();
let nan = self.is_nan();
const SUBN_SCALE: f64 = 1.8014398509481984e16;
const SUBN_CBRT: f64 = 262144.0;
let tiny = a.simd_lt(Self::from(f64::MIN_POSITIVE));
let a = tiny.select(a * Self::from(SUBN_SCALE), a);
let e = Self::exponent(a) + Self::ONE;
let d = Self::fraction_2(a);
const_f64_as_f64x2!(C0, 2.2307275302496609725722);
const_f64_as_f64x2!(C1, -3.85841935510444988821632);
const_f64_as_f64x2!(C2, 6.03990368989458747961407);
const_f64_as_f64x2!(C3, -5.73353060922947843636166);
const_f64_as_f64x2!(C4, 2.96155103020039511818595);
const_f64_as_f64x2!(C5, -0.640245898480692909870982);
let mut x = polynomial_5!(d, C0, C1, C2, C3, C4, C5);
let x2 = x * x;
let x4 = x2 * x2;
x = x - d.mul_add(x4, -x) * Self::from(1.0 / 3.0);
let mut y = (d * x) * x;
let yx = y * x;
let t = Self::from(2.0 / 3.0);
y = y - t * y * (yx - Self::ONE);
let three = Self::from(3.0);
let two = Self::from(2.0);
let neg = e.simd_lt(Self::ZERO);
let e_adj = neg.select(e - two, e);
let k = (e_adj / three).trunc();
let r = e - three * k;
const_f64_as_f64x2!(CBRT2, 1.2599210498948732);
const_f64_as_f64x2!(CBRT4, 1.5874010519681994);
y = r.simd_eq(Self::ONE).select(y * CBRT2, y);
y = r.simd_eq(two).select(y * CBRT4, y);
y *= Self::vm_pow2n(k);
y = tiny.select(y / Self::from(SUBN_CBRT), y);
let result = y.flip_signs(self);
let result = nan.select(self, result);
let result = zero.select(self, result);
let result = inf.select(self, result);
result
}
#[inline]
pub fn asin(self) -> Self {
const_f64_as_f64x2!(R4asin, 2.967721961301243206100E-3);
const_f64_as_f64x2!(R3asin, -5.634242780008963776856E-1);
const_f64_as_f64x2!(R2asin, 6.968710824104713396794E0);
const_f64_as_f64x2!(R1asin, -2.556901049652824852289E1);
const_f64_as_f64x2!(R0asin, 2.853665548261061424989E1);
const_f64_as_f64x2!(S3asin, -2.194779531642920639778E1);
const_f64_as_f64x2!(S2asin, 1.470656354026814941758E2);
const_f64_as_f64x2!(S1asin, -3.838770957603691357202E2);
const_f64_as_f64x2!(S0asin, 3.424398657913078477438E2);
const_f64_as_f64x2!(P5asin, 4.253011369004428248960E-3);
const_f64_as_f64x2!(P4asin, -6.019598008014123785661E-1);
const_f64_as_f64x2!(P3asin, 5.444622390564711410273E0);
const_f64_as_f64x2!(P2asin, -1.626247967210700244449E1);
const_f64_as_f64x2!(P1asin, 1.956261983317594739197E1);
const_f64_as_f64x2!(P0asin, -8.198089802484824371615E0);
const_f64_as_f64x2!(Q4asin, -1.474091372988853791896E1);
const_f64_as_f64x2!(Q3asin, 7.049610280856842141659E1);
const_f64_as_f64x2!(Q2asin, -1.471791292232726029859E2);
const_f64_as_f64x2!(Q1asin, 1.395105614657485689735E2);
const_f64_as_f64x2!(Q0asin, -4.918853881490881290097E1);
let xa = self.abs();
let big = xa.simd_ge(f64x2::splat(0.625));
let x1 = big.select(f64x2::splat(1.0) - xa, xa * xa);
let x2 = x1 * x1;
let x3 = x2 * x1;
let x4 = x2 * x2;
let x5 = x4 * x1;
let do_big = big.any();
let do_small = !big.all();
let mut rx = f64x2::default();
let mut sx = f64x2::default();
let mut px = f64x2::default();
let mut qx = f64x2::default();
if do_big {
rx = x3.mul_add(R3asin, x2 * R2asin)
+ x4.mul_add(R4asin, x1.mul_add(R1asin, R0asin));
sx =
x3.mul_add(S3asin, x4) + x2.mul_add(S2asin, x1.mul_add(S1asin, S0asin));
}
if do_small {
px = x3.mul_add(P3asin, P0asin)
+ x4.mul_add(P4asin, x1 * P1asin)
+ x5.mul_add(P5asin, x2 * P2asin);
qx = x4.mul_add(Q4asin, x5)
+ x3.mul_add(Q3asin, x1 * Q1asin)
+ x2.mul_add(Q2asin, Q0asin);
};
let vx = big.select(rx, px);
let wx = big.select(sx, qx);
let y1 = vx / wx * x1;
let mut z1 = f64x2::default();
let mut z2 = f64x2::default();
if do_big {
let xb = (x1 + x1).sqrt();
z1 = xb.mul_add(y1, xb);
}
if do_small {
z2 = xa.mul_add(y1, xa);
}
let z3 = f64x2::FRAC_PI_2 - z1;
let asin = big.select(z3, z2);
let asin = asin.flip_signs(self);
asin
}
#[inline]
pub fn acos(self) -> Self {
const_f64_as_f64x2!(R4asin, 2.967721961301243206100E-3);
const_f64_as_f64x2!(R3asin, -5.634242780008963776856E-1);
const_f64_as_f64x2!(R2asin, 6.968710824104713396794E0);
const_f64_as_f64x2!(R1asin, -2.556901049652824852289E1);
const_f64_as_f64x2!(R0asin, 2.853665548261061424989E1);
const_f64_as_f64x2!(S3asin, -2.194779531642920639778E1);
const_f64_as_f64x2!(S2asin, 1.470656354026814941758E2);
const_f64_as_f64x2!(S1asin, -3.838770957603691357202E2);
const_f64_as_f64x2!(S0asin, 3.424398657913078477438E2);
const_f64_as_f64x2!(P5asin, 4.253011369004428248960E-3);
const_f64_as_f64x2!(P4asin, -6.019598008014123785661E-1);
const_f64_as_f64x2!(P3asin, 5.444622390564711410273E0);
const_f64_as_f64x2!(P2asin, -1.626247967210700244449E1);
const_f64_as_f64x2!(P1asin, 1.956261983317594739197E1);
const_f64_as_f64x2!(P0asin, -8.198089802484824371615E0);
const_f64_as_f64x2!(Q4asin, -1.474091372988853791896E1);
const_f64_as_f64x2!(Q3asin, 7.049610280856842141659E1);
const_f64_as_f64x2!(Q2asin, -1.471791292232726029859E2);
const_f64_as_f64x2!(Q1asin, 1.395105614657485689735E2);
const_f64_as_f64x2!(Q0asin, -4.918853881490881290097E1);
let xa = self.abs();
let big = xa.simd_ge(f64x2::splat(0.625));
let x1 = big.select(f64x2::splat(1.0) - xa, xa * xa);
let x2 = x1 * x1;
let x3 = x2 * x1;
let x4 = x2 * x2;
let x5 = x4 * x1;
let do_big = big.any();
let do_small = !big.all();
let mut rx = f64x2::default();
let mut sx = f64x2::default();
let mut px = f64x2::default();
let mut qx = f64x2::default();
if do_big {
rx = x3.mul_add(R3asin, x2 * R2asin)
+ x4.mul_add(R4asin, x1.mul_add(R1asin, R0asin));
sx =
x3.mul_add(S3asin, x4) + x2.mul_add(S2asin, x1.mul_add(S1asin, S0asin));
}
if do_small {
px = x3.mul_add(P3asin, P0asin)
+ x4.mul_add(P4asin, x1 * P1asin)
+ x5.mul_add(P5asin, x2 * P2asin);
qx = x4.mul_add(Q4asin, x5)
+ x3.mul_add(Q3asin, x1 * Q1asin)
+ x2.mul_add(Q2asin, Q0asin);
};
let vx = big.select(rx, px);
let wx = big.select(sx, qx);
let y1 = vx / wx * x1;
let mut z1 = f64x2::default();
let mut z2 = f64x2::default();
if do_big {
let xb = (x1 + x1).sqrt();
z1 = xb.mul_add(y1, xb);
}
if do_small {
z2 = xa.mul_add(y1, xa);
}
let z3 = self.simd_lt(f64x2::ZERO).select(f64x2::PI - z1, z1);
let z4 = f64x2::FRAC_PI_2 - z2.flip_signs(self);
let acos = big.select(z3, z4);
acos
}
#[inline]
pub fn atan(self) -> Self {
const_f64_as_f64x2!(MORE_BITS, 6.123233995736765886130E-17);
const_f64_as_f64x2!(MORE_BITS_O2, 6.123233995736765886130E-17 * 0.5);
const_f64_as_f64x2!(T3PO8, core::f64::consts::SQRT_2 + 1.0);
const_f64_as_f64x2!(P4atan, -8.750608600031904122785E-1);
const_f64_as_f64x2!(P3atan, -1.615753718733365076637E1);
const_f64_as_f64x2!(P2atan, -7.500855792314704667340E1);
const_f64_as_f64x2!(P1atan, -1.228866684490136173410E2);
const_f64_as_f64x2!(P0atan, -6.485021904942025371773E1);
const_f64_as_f64x2!(Q4atan, 2.485846490142306297962E1);
const_f64_as_f64x2!(Q3atan, 1.650270098316988542046E2);
const_f64_as_f64x2!(Q2atan, 4.328810604912902668951E2);
const_f64_as_f64x2!(Q1atan, 4.853903996359136964868E2);
const_f64_as_f64x2!(Q0atan, 1.945506571482613964425E2);
let t = self.abs();
let notbig = t.simd_le(T3PO8);
let notsmal = t.simd_ge(Self::splat(0.66));
let mut s = notbig.select(Self::FRAC_PI_4, Self::FRAC_PI_2);
s = notsmal & s;
let mut fac = notbig.select(MORE_BITS_O2, MORE_BITS);
fac = notsmal & fac;
let mut a = notbig & t;
a = notsmal.select(a - Self::ONE, a);
let mut b = notbig & Self::ONE;
b = notsmal.select(b + t, b);
let z = a / b;
let zz = z * z;
let px = polynomial_4!(zz, P0atan, P1atan, P2atan, P3atan, P4atan);
let qx = polynomial_5n!(zz, Q0atan, Q1atan, Q2atan, Q3atan, Q4atan);
let mut re = (px / qx).mul_add(z * zz, z);
re += s + fac;
re = (self.is_sign_negative()).select(-re, re);
re
}
#[inline]
pub fn atan2(self, x: Self) -> Self {
const_f64_as_f64x2!(MORE_BITS, 6.123233995736765886130E-17);
const_f64_as_f64x2!(MORE_BITS_O2, 6.123233995736765886130E-17 * 0.5);
const_f64_as_f64x2!(T3PO8, core::f64::consts::SQRT_2 + 1.0);
const_f64_as_f64x2!(P4atan, -8.750608600031904122785E-1);
const_f64_as_f64x2!(P3atan, -1.615753718733365076637E1);
const_f64_as_f64x2!(P2atan, -7.500855792314704667340E1);
const_f64_as_f64x2!(P1atan, -1.228866684490136173410E2);
const_f64_as_f64x2!(P0atan, -6.485021904942025371773E1);
const_f64_as_f64x2!(Q4atan, 2.485846490142306297962E1);
const_f64_as_f64x2!(Q3atan, 1.650270098316988542046E2);
const_f64_as_f64x2!(Q2atan, 4.328810604912902668951E2);
const_f64_as_f64x2!(Q1atan, 4.853903996359136964868E2);
const_f64_as_f64x2!(Q0atan, 1.945506571482613964425E2);
let y = self;
let x1 = x.abs();
let y1 = y.abs();
let swapxy = y1.simd_gt(x1);
let mut x2 = swapxy.select(y1, x1);
let mut y2 = swapxy.select(x1, y1);
let both_infinite = x.is_inf() & y.is_inf();
if both_infinite.any() {
let minus_one = -Self::ONE;
x2 = both_infinite.select(x2 & minus_one, x2);
y2 = both_infinite.select(y2 & minus_one, y2);
}
let t = y2 / x2;
let notbig = t.simd_le(T3PO8);
let notsmal = t.simd_ge(Self::splat(0.66));
let mut s = notbig.select(Self::FRAC_PI_4, Self::FRAC_PI_2);
s = notsmal & s;
let mut fac = notbig.select(MORE_BITS_O2, MORE_BITS);
fac = notsmal & fac;
let mut a = notbig & t;
a = notsmal.select(a - Self::ONE, a);
let mut b = notbig & Self::ONE;
b = notsmal.select(b + t, b);
let z = a / b;
let zz = z * z;
let px = polynomial_4!(zz, P0atan, P1atan, P2atan, P3atan, P4atan);
let qx = polynomial_5n!(zz, Q0atan, Q1atan, Q2atan, Q3atan, Q4atan);
let mut re = (px / qx).mul_add(z * zz, z);
re += s + fac;
re = swapxy.select(Self::FRAC_PI_2 - re, re);
re = ((x | y).simd_eq(Self::ZERO)).select(Self::ZERO, re);
re = (x.is_sign_negative()).select(Self::PI - re, re);
re = (y.is_sign_negative()).select(-re, re);
re
}
#[inline]
pub fn sin_cos(self) -> (Self, Self) {
const_f64_as_f64x2!(P0sin, -1.66666666666666307295E-1);
const_f64_as_f64x2!(P1sin, 8.33333333332211858878E-3);
const_f64_as_f64x2!(P2sin, -1.98412698295895385996E-4);
const_f64_as_f64x2!(P3sin, 2.75573136213857245213E-6);
const_f64_as_f64x2!(P4sin, -2.50507477628578072866E-8);
const_f64_as_f64x2!(P5sin, 1.58962301576546568060E-10);
const_f64_as_f64x2!(P0cos, 4.16666666666665929218E-2);
const_f64_as_f64x2!(P1cos, -1.38888888888730564116E-3);
const_f64_as_f64x2!(P2cos, 2.48015872888517045348E-5);
const_f64_as_f64x2!(P3cos, -2.75573141792967388112E-7);
const_f64_as_f64x2!(P4cos, 2.08757008419747316778E-9);
const_f64_as_f64x2!(P5cos, -1.13585365213876817300E-11);
const_f64_as_f64x2!(DP1, 7.853981554508209228515625E-1 * 2.);
const_f64_as_f64x2!(DP2, 7.94662735614792836714E-9 * 2.);
const_f64_as_f64x2!(DP3, 3.06161699786838294307E-17 * 2.);
const_f64_as_f64x2!(TWO_OVER_PI, 2.0 / core::f64::consts::PI);
let xa = self.abs();
let y = (xa * TWO_OVER_PI).round_ties_even();
let q = y.round_int();
let x = y.mul_neg_add(DP3, y.mul_neg_add(DP2, y.mul_neg_add(DP1, xa)));
let x2 = x * x;
let mut s = polynomial_5!(x2, P0sin, P1sin, P2sin, P3sin, P4sin, P5sin);
let mut c = polynomial_5!(x2, P0cos, P1cos, P2cos, P3cos, P4cos, P5cos);
s = (x * x2).mul_add(s, x);
c =
(x2 * x2).mul_add(c, x2.mul_neg_add(f64x2::from(0.5), f64x2::from(1.0)));
let swap = !((q & i64x2::from(1)).simd_eq(i64x2::from(0)));
let mut overflow: f64x2 = cast(q.simd_gt(i64x2::from(0x80000000000000)));
overflow &= xa.is_finite();
s = overflow.select(f64x2::from(0.0), s);
c = overflow.select(f64x2::from(1.0), c);
let mut sin1 = cast::<_, f64x2>(swap).select(c, s);
let sign_sin: i64x2 = (q << 62) ^ cast::<_, i64x2>(self);
sin1 = sin1.flip_signs(cast(sign_sin));
let mut cos1 = cast::<_, f64x2>(swap).select(s, c);
let sign_cos: i64x2 = ((q + i64x2::from(1)) & i64x2::from(2)) << 62;
cos1 ^= cast::<_, f64x2>(sign_cos);
let finite = self.is_finite();
let nan = Self::splat(f64::NAN);
let sin_final = finite.select(sin1, nan);
let cos_final = finite.select(cos1, nan);
(sin_final, cos_final)
}
#[inline]
pub fn asin_acos(self) -> (Self, Self) {
const_f64_as_f64x2!(R4asin, 2.967721961301243206100E-3);
const_f64_as_f64x2!(R3asin, -5.634242780008963776856E-1);
const_f64_as_f64x2!(R2asin, 6.968710824104713396794E0);
const_f64_as_f64x2!(R1asin, -2.556901049652824852289E1);
const_f64_as_f64x2!(R0asin, 2.853665548261061424989E1);
const_f64_as_f64x2!(S3asin, -2.194779531642920639778E1);
const_f64_as_f64x2!(S2asin, 1.470656354026814941758E2);
const_f64_as_f64x2!(S1asin, -3.838770957603691357202E2);
const_f64_as_f64x2!(S0asin, 3.424398657913078477438E2);
const_f64_as_f64x2!(P5asin, 4.253011369004428248960E-3);
const_f64_as_f64x2!(P4asin, -6.019598008014123785661E-1);
const_f64_as_f64x2!(P3asin, 5.444622390564711410273E0);
const_f64_as_f64x2!(P2asin, -1.626247967210700244449E1);
const_f64_as_f64x2!(P1asin, 1.956261983317594739197E1);
const_f64_as_f64x2!(P0asin, -8.198089802484824371615E0);
const_f64_as_f64x2!(Q4asin, -1.474091372988853791896E1);
const_f64_as_f64x2!(Q3asin, 7.049610280856842141659E1);
const_f64_as_f64x2!(Q2asin, -1.471791292232726029859E2);
const_f64_as_f64x2!(Q1asin, 1.395105614657485689735E2);
const_f64_as_f64x2!(Q0asin, -4.918853881490881290097E1);
let xa = self.abs();
let big = xa.simd_ge(f64x2::splat(0.625));
let x1 = big.select(f64x2::splat(1.0) - xa, xa * xa);
let x2 = x1 * x1;
let x3 = x2 * x1;
let x4 = x2 * x2;
let x5 = x4 * x1;
let do_big = big.any();
let do_small = !big.all();
let mut rx = f64x2::default();
let mut sx = f64x2::default();
let mut px = f64x2::default();
let mut qx = f64x2::default();
if do_big {
rx = x3.mul_add(R3asin, x2 * R2asin)
+ x4.mul_add(R4asin, x1.mul_add(R1asin, R0asin));
sx =
x3.mul_add(S3asin, x4) + x2.mul_add(S2asin, x1.mul_add(S1asin, S0asin));
}
if do_small {
px = x3.mul_add(P3asin, P0asin)
+ x4.mul_add(P4asin, x1 * P1asin)
+ x5.mul_add(P5asin, x2 * P2asin);
qx = x4.mul_add(Q4asin, x5)
+ x3.mul_add(Q3asin, x1 * Q1asin)
+ x2.mul_add(Q2asin, Q0asin);
};
let vx = big.select(rx, px);
let wx = big.select(sx, qx);
let y1 = vx / wx * x1;
let mut z1 = f64x2::default();
let mut z2 = f64x2::default();
if do_big {
let xb = (x1 + x1).sqrt();
z1 = xb.mul_add(y1, xb);
}
if do_small {
z2 = xa.mul_add(y1, xa);
}
let z3 = f64x2::FRAC_PI_2 - z1;
let asin = big.select(z3, z2);
let asin = asin.flip_signs(self);
let z3 = self.simd_lt(f64x2::ZERO).select(f64x2::PI - z1, z1);
let z4 = f64x2::FRAC_PI_2 - z2.flip_signs(self);
let acos = big.select(z3, z4);
(asin, acos)
}
#[inline]
pub fn exp_m1(self) -> Self {
const_f64_as_f64x2!(P2, 1.0 / 2.0);
const_f64_as_f64x2!(P3, 1.0 / 6.0);
const_f64_as_f64x2!(P4, 1.0 / 24.0);
const_f64_as_f64x2!(P5, 1.0 / 120.0);
const_f64_as_f64x2!(P6, 1.0 / 720.0);
const_f64_as_f64x2!(P7, 1.0 / 5040.0);
const_f64_as_f64x2!(P8, 1.0 / 40320.0);
const_f64_as_f64x2!(P9, 1.0 / 362880.0);
const_f64_as_f64x2!(P10, 1.0 / 3628800.0);
const_f64_as_f64x2!(P11, 1.0 / 39916800.0);
const_f64_as_f64x2!(P12, 1.0 / 479001600.0);
const_f64_as_f64x2!(P13, 1.0 / 6227020800.0);
const_f64_as_f64x2!(LN2D_HI, 0.693145751953125);
const_f64_as_f64x2!(LN2D_LO, 1.42860682030941723212E-6);
if self.simd_lt(Self::from(-37.429)).all() {
return Self::from(-1.0);
}
let max_x = Self::from(709.783);
let min_x = Self::from(-744.79);
let max_r = Self::from(1023.0);
let r = (self * Self::LOG2_E).round_ties_even();
let big = r.simd_gt(max_r);
let r_safe = big.select(max_r, r);
let excess = r - max_r;
let excess = big.select(excess, Self::ZERO);
let scale = Self::vm_pow2n(excess);
let x = r.mul_neg_add(LN2D_HI, self);
let x = r.mul_neg_add(LN2D_LO, x);
let z =
polynomial_13!(x, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13);
let n2 = Self::vm_pow2n(r_safe);
let exp_val = (z + Self::ONE) * scale * n2;
let r_is_zero = r.simd_eq(Self::ZERO);
let z = r_is_zero.select(z, exp_val - Self::ONE);
let nan_mask = self.is_nan();
let finite = self.is_finite();
let mut result = nan_mask.select(Self::nan_pow(), z);
let pos_overflow = self.simd_gt(max_x) & finite;
result = pos_overflow.select(Self::infinity(), result);
let neg_underflow = self.simd_lt(min_x) & finite;
result = neg_underflow.select(-Self::ONE, result);
let pos_inf = !finite & !self.is_sign_negative() & !nan_mask;
result = pos_inf.select(Self::infinity(), result);
let neg_inf = !finite & self.is_sign_negative() & !nan_mask;
result = neg_inf.select(-Self::ONE, result);
let is_zero = self.simd_eq(Self::ZERO);
result = is_zero.select(self, result);
result
}
#[inline]
pub fn ln_1p(self) -> Self {
let u = self + Self::ONE;
let eq = u.simd_eq(Self::ONE);
let ln_u = Self::ln(u);
let correction = self * (ln_u / (u - Self::ONE));
let result = eq.select(self, correction);
let over = u.is_inf();
over.select(ln_u, result)
}
#[inline]
pub fn sinh(self) -> Self {
const_f64_as_f64x2!(P0, 1.0);
const_f64_as_f64x2!(P1, 1.0 / 6.0);
const_f64_as_f64x2!(P2, 1.0 / 120.0);
const_f64_as_f64x2!(P3, 1.0 / 5040.0);
const_f64_as_f64x2!(P4, 1.0 / 362880.0);
const_f64_as_f64x2!(P5, 1.0 / 39916800.0);
const_f64_as_f64x2!(P6, 1.0 / 6227020800.0);
let a = self.abs();
let small = a.simd_lt(f64x2::from(0.5));
let t = a * a;
let poly = a * polynomial_6!(t, P0, P1, P2, P3, P4, P5, P6);
let exp_based = {
let e = a.exp();
(e - Self::ONE / e) * Self::HALF
};
let result = small.select(poly, exp_based);
result.flip_signs(self)
}
#[inline]
pub fn cosh(self) -> Self {
const_f64_as_f64x2!(P0, 1.0);
const_f64_as_f64x2!(P1, 1.0 / 2.0);
const_f64_as_f64x2!(P2, 1.0 / 24.0);
const_f64_as_f64x2!(P3, 1.0 / 720.0);
const_f64_as_f64x2!(P4, 1.0 / 40320.0);
const_f64_as_f64x2!(P5, 1.0 / 3628800.0);
const_f64_as_f64x2!(P6, 1.0 / 479001600.0);
const_f64_as_f64x2!(P7, 1.0 / 87178291200.0);
let a = self.abs();
let small = a.simd_lt(f64x2::from(0.5));
let t = a * a;
let poly = polynomial_7!(t, P0, P1, P2, P3, P4, P5, P6, P7);
let exp_based = {
let e = a.exp();
(e + Self::ONE / e) * Self::HALF
};
small.select(poly, exp_based)
}
#[inline]
pub fn tanh(self) -> Self {
let a = self.abs();
let large = a.simd_gt(f64x2::from(19.062));
if large.all() {
return Self::ONE.flip_signs(self);
}
let small = a.simd_lt(f64x2::from(5e-8));
let exp_based = {
let t = (Self::from(-2.0) * a).exp_m1();
let pos = -t / (t + Self::from(2.0));
pos.flip_signs(self)
};
let result = small.select(self, exp_based);
large.select(Self::ONE.flip_signs(self), result)
}
}
impl f64x2 {
#[inline]
fn vm_pow2n(self) -> Self {
const_f64_as_f64x2!(pow2_52, 4503599627370496.0);
const_f64_as_f64x2!(bias, 1023.0);
let a = self + (bias + pow2_52);
let c = cast::<_, i64x2>(a) << 52;
let std_result = cast::<_, f64x2>(c);
let min_exp = f64x2::from(-1022.0);
let is_sub = self.simd_lt(min_exp);
if is_sub.any() {
let valid = self.simd_ge(f64x2::from(-1074.0));
let shift_f = self + f64x2::from(1074.0);
let mut shift_i = shift_f.trunc_int();
shift_i = cast::<_, i64x2>(valid).select(shift_i, i64x2::ZERO);
let mantissa = i64x2::ONE << shift_i;
let sub_result = cast::<_, f64x2>(mantissa);
let sub_result = valid.select(sub_result, f64x2::ZERO);
is_sub.select(sub_result, std_result)
} else {
std_result
}
}
#[inline]
fn exponent(self) -> f64x2 {
const_f64_as_f64x2!(pow2_52, 4503599627370496.0);
const_f64_as_f64x2!(bias, 1023.0);
let a = cast::<_, u64x2>(self);
let b = a >> 52;
let c = b | cast::<_, u64x2>(pow2_52);
let d = cast::<_, f64x2>(c);
let e = d - (pow2_52 + bias);
e
}
#[inline]
fn fraction_2(self) -> Self {
let t1 = cast::<_, u64x2>(self);
let t2 = cast::<_, u64x2>(
(t1 & u64x2::from(0x000FFFFFFFFFFFFF)) | u64x2::from(0x3FE0000000000000),
);
cast::<_, f64x2>(t2)
}
#[inline]
fn is_zero_or_subnormal(self) -> Self {
let t = cast::<_, i64x2>(self);
let t = t & i64x2::splat(0x7FF0000000000000);
let mask = t.simd_eq(i64x2::splat(0));
cast::<_, f64x2>(mask)
}
#[inline]
fn infinity() -> Self {
cast::<_, f64x2>(i64x2::splat(0x7FF0000000000000))
}
#[inline]
fn nan_log() -> Self {
cast::<_, f64x2>(i64x2::splat(0x7FF8000000000000 | 0x101 << 29))
}
#[inline]
fn nan_pow() -> Self {
cast::<_, f64x2>(i64x2::splat(0x7FF8000000000000 | 0x101 << 29))
}
#[must_use]
#[inline]
#[allow(dead_code)]
pub(crate) fn unpack_lo(self, b: Self) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: unpack_low_m128d(self.sse, b.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: i64x2_shuffle::<0, 2>(self.simd, b.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))] {
Self { neon: unsafe { vzip1q_f64(self.neon, b.neon) } }
} else {
Self::new([self.as_array()[0], b.as_array()[0]])
}
}
}
#[must_use]
#[inline]
#[allow(dead_code)]
pub(crate) fn unpack_hi(self, b: Self) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: unpack_high_m128d(self.sse, b.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: i64x2_shuffle::<1, 3>(self.simd, b.simd) }
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))] {
Self { neon: unsafe { vzip2q_f64(self.neon, b.neon) } }
} else {
Self::new([self.as_array()[1], b.as_array()[1]])
}
}
}
#[inline]
pub fn from_i32x4_lower2(v: i32x4) -> Self {
pick! {
if #[cfg(target_feature="sse2")] {
Self { sse: convert_to_m128d_from_lower2_i32_m128i(v.sse) }
} else if #[cfg(target_feature="simd128")] {
Self { simd: f64x2_convert_low_i32x4(v.simd)}
} else if #[cfg(all(target_feature="neon",target_arch="aarch64"))] {
Self { neon: unsafe { vcvtq_f64_s64(vmovl_s32(vget_low_s32(v.neon))) }}
} else {
Self { arr: [
v.as_array()[0] as f64,
v.as_array()[1] as f64,
]}
}
}
}
}
impl From<i32x4> for f64x2 {
#[inline]
fn from(v: i32x4) -> Self {
Self::from_i32x4_lower2(v)
}
}