Trait ComplexField

Source
pub trait ComplexField: Entity + Conjugate<Canonical = Self> {
    type Real: RealField;
    type Simd: SimdCtx;
    type ScalarSimd: SimdCtx;
    type PortableSimd: SimdCtx;

Show 54 methods // Required methods fn faer_from_f64(value: f64) -> Self; fn faer_add(self, rhs: Self) -> Self; fn faer_sub(self, rhs: Self) -> Self; fn faer_mul(self, rhs: Self) -> Self; fn faer_neg(self) -> Self; fn faer_inv(self) -> Self; fn faer_conj(self) -> Self; fn faer_sqrt(self) -> Self; fn faer_scale_real(self, rhs: Self::Real) -> Self; fn faer_scale_power_of_two(self, rhs: Self::Real) -> Self; fn faer_score(self) -> Self::Real; fn faer_abs(self) -> Self::Real; fn faer_abs2(self) -> Self::Real; fn faer_nan() -> Self; fn faer_from_real(real: Self::Real) -> Self; fn faer_real(self) -> Self::Real; fn faer_imag(self) -> Self::Real; fn faer_zero() -> Self; fn faer_one() -> Self; fn faer_align_offset<S>( simd: S, ptr: *const Self::Unit, len: usize, ) -> Offset<Self::SimdMask<S>> where S: Simd; fn faer_slice_as_aligned_simd<S>( simd: S, slice: &[Self::Unit], offset: Offset<Self::SimdMask<S>>, ) -> (Self::PrefixUnit<'_, S>, &[Self::SimdUnit<S>], Self::SuffixUnit<'_, S>) where S: Simd; fn faer_slice_as_aligned_simd_mut<S>( simd: S, slice: &mut [Self::Unit], offset: Offset<Self::SimdMask<S>>, ) -> (Self::PrefixMutUnit<'_, S>, &mut [Self::SimdUnit<S>], Self::SuffixMutUnit<'_, S>) where S: Simd; fn faer_slice_as_simd<S>( slice: &[Self::Unit], ) -> (&[Self::SimdUnit<S>], &[Self::Unit]) where S: Simd; fn faer_slice_as_simd_mut<S>( slice: &mut [Self::Unit], ) -> (&mut [Self::SimdUnit<S>], &mut [Self::Unit]) where S: Simd; fn faer_partial_load_unit<S>( simd: S, slice: &[Self::Unit], ) -> Self::SimdUnit<S> where S: Simd; fn faer_partial_store_unit<S>( simd: S, slice: &mut [Self::Unit], values: Self::SimdUnit<S>, ) where S: Simd; fn faer_partial_load_last_unit<S>( simd: S, slice: &[Self::Unit], ) -> Self::SimdUnit<S> where S: Simd; fn faer_partial_store_last_unit<S>( simd: S, slice: &mut [Self::Unit], values: Self::SimdUnit<S>, ) where S: Simd; fn faer_simd_splat_unit<S>(simd: S, unit: Self::Unit) -> Self::SimdUnit<S> where S: Simd; fn faer_simd_scalar_mul<S>(simd: S, lhs: Self, rhs: Self) -> Self where S: Simd; fn faer_simd_scalar_conj_mul<S>(simd: S, lhs: Self, rhs: Self) -> Self where S: Simd; fn faer_simd_scalar_mul_adde<S>( simd: S, lhs: Self, rhs: Self, acc: Self, ) -> Self where S: Simd; fn faer_simd_scalar_conj_mul_adde<S>( simd: S, lhs: Self, rhs: Self, acc: Self, ) -> Self where S: Simd; fn faer_simd_neg<S>( simd: S, values: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>> where S: Simd; fn faer_simd_conj<S>( simd: S, values: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>> where S: Simd; fn faer_simd_rotate_left<S>( simd: S, values: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, amount: usize, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>> where S: Simd; fn faer_simd_add<S>( simd: S, lhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, rhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>> where S: Simd; fn faer_simd_sub<S>( simd: S, lhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, rhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>> where S: Simd; fn faer_simd_mul<S>( simd: S, lhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, rhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>> where S: Simd; fn faer_simd_scale_real<S>( simd: S, lhs: <<Self::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<Self::Real as Entity>::SimdUnit<S>>, rhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>> where S: Simd; fn faer_simd_conj_mul<S>( simd: S, lhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, rhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>> where S: Simd; fn faer_simd_mul_adde<S>( simd: S, lhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, rhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, acc: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>> where S: Simd; fn faer_simd_conj_mul_adde<S>( simd: S, lhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, rhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, acc: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>> where S: Simd; fn faer_simd_abs2_adde<S>( simd: S, values: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, acc: <<Self::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<Self::Real as Entity>::SimdUnit<S>>, ) -> <<Self::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<Self::Real as Entity>::SimdUnit<S>> where S: Simd; fn faer_simd_abs2<S>( simd: S, values: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <<Self::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<Self::Real as Entity>::SimdUnit<S>> where S: Simd; fn faer_simd_score<S>( simd: S, values: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <<Self::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<Self::Real as Entity>::SimdUnit<S>> where S: Simd; // Provided methods fn faer_is_nan(&self) -> bool { ... } fn faer_is_finite(&self) -> bool { ... } fn faer_partial_load<S>( simd: S, slice: <Self::Group as ForType>::FaerOf<&[Self::Unit]>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>> where S: Simd { ... } fn faer_partial_store<S>( simd: S, slice: <Self::Group as ForType>::FaerOf<&mut [Self::Unit]>, values: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) where S: Simd { ... } fn faer_partial_load_last<S>( simd: S, slice: <Self::Group as ForType>::FaerOf<&[Self::Unit]>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>> where S: Simd { ... } fn faer_partial_store_last<S>( simd: S, slice: <Self::Group as ForType>::FaerOf<&mut [Self::Unit]>, values: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) where S: Simd { ... } fn faer_simd_splat<S>( simd: S, value: Self, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>> where S: Simd { ... } fn faer_simd_reduce_add<S>( simd: S, values: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> Self where S: Simd { ... }
}
Expand description

Unstable trait containing the operations that a number type needs to implement.

Required Associated Types§

Required Methods§

Source

fn faer_from_f64(value: f64) -> Self

Converts value from f64 to Self.
The conversion may be lossy when converting to a type with less precision.

Source

fn faer_add(self, rhs: Self) -> Self

Returns self + rhs.

Source

fn faer_sub(self, rhs: Self) -> Self

Returns self - rhs.

Source

fn faer_mul(self, rhs: Self) -> Self

Returns self * rhs.

Source

fn faer_neg(self) -> Self

Returns -self.

Source

fn faer_inv(self) -> Self

Returns 1.0/self.

Source

fn faer_conj(self) -> Self

Returns conjugate(self).

Source

fn faer_sqrt(self) -> Self

Returns the square root of self.

Source

fn faer_scale_real(self, rhs: Self::Real) -> Self

Returns the input, scaled by rhs.

Source

fn faer_scale_power_of_two(self, rhs: Self::Real) -> Self

Returns the input, scaled by rhs.

Source

fn faer_score(self) -> Self::Real

Returns either the norm or squared norm of the number.

An implementation may choose either, so long as it chooses consistently.

Source

fn faer_abs(self) -> Self::Real

Returns the absolute value of self.

Source

fn faer_abs2(self) -> Self::Real

Returns the squared absolute value of self.

Source

fn faer_nan() -> Self

Returns a NaN value.

Source

fn faer_from_real(real: Self::Real) -> Self

Returns a complex number whose real part is equal to real, and a zero imaginary part.

Source

fn faer_real(self) -> Self::Real

Returns the real part.

Source

fn faer_imag(self) -> Self::Real

Returns the imaginary part.

Source

fn faer_zero() -> Self

Returns 0.0.

Source

fn faer_one() -> Self

Returns 1.0.

Source

fn faer_align_offset<S>( simd: S, ptr: *const Self::Unit, len: usize, ) -> Offset<Self::SimdMask<S>>
where S: Simd,

Source

fn faer_slice_as_aligned_simd<S>( simd: S, slice: &[Self::Unit], offset: Offset<Self::SimdMask<S>>, ) -> (Self::PrefixUnit<'_, S>, &[Self::SimdUnit<S>], Self::SuffixUnit<'_, S>)
where S: Simd,

Source

fn faer_slice_as_aligned_simd_mut<S>( simd: S, slice: &mut [Self::Unit], offset: Offset<Self::SimdMask<S>>, ) -> (Self::PrefixMutUnit<'_, S>, &mut [Self::SimdUnit<S>], Self::SuffixMutUnit<'_, S>)
where S: Simd,

Source

fn faer_slice_as_simd<S>( slice: &[Self::Unit], ) -> (&[Self::SimdUnit<S>], &[Self::Unit])
where S: Simd,

Source

fn faer_slice_as_simd_mut<S>( slice: &mut [Self::Unit], ) -> (&mut [Self::SimdUnit<S>], &mut [Self::Unit])
where S: Simd,

Source

fn faer_partial_load_unit<S>(simd: S, slice: &[Self::Unit]) -> Self::SimdUnit<S>
where S: Simd,

Source

fn faer_partial_store_unit<S>( simd: S, slice: &mut [Self::Unit], values: Self::SimdUnit<S>, )
where S: Simd,

Source

fn faer_partial_load_last_unit<S>( simd: S, slice: &[Self::Unit], ) -> Self::SimdUnit<S>
where S: Simd,

Source

fn faer_partial_store_last_unit<S>( simd: S, slice: &mut [Self::Unit], values: Self::SimdUnit<S>, )
where S: Simd,

Source

fn faer_simd_splat_unit<S>(simd: S, unit: Self::Unit) -> Self::SimdUnit<S>
where S: Simd,

Source

fn faer_simd_scalar_mul<S>(simd: S, lhs: Self, rhs: Self) -> Self
where S: Simd,

Source

fn faer_simd_scalar_conj_mul<S>(simd: S, lhs: Self, rhs: Self) -> Self
where S: Simd,

Source

fn faer_simd_scalar_mul_adde<S>( simd: S, lhs: Self, rhs: Self, acc: Self, ) -> Self
where S: Simd,

Source

fn faer_simd_scalar_conj_mul_adde<S>( simd: S, lhs: Self, rhs: Self, acc: Self, ) -> Self
where S: Simd,

Source

fn faer_simd_neg<S>( simd: S, values: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>
where S: Simd,

Source

fn faer_simd_conj<S>( simd: S, values: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>
where S: Simd,

Source

fn faer_simd_rotate_left<S>( simd: S, values: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, amount: usize, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>
where S: Simd,

Source

fn faer_simd_add<S>( simd: S, lhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, rhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>
where S: Simd,

Source

fn faer_simd_sub<S>( simd: S, lhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, rhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>
where S: Simd,

Source

fn faer_simd_mul<S>( simd: S, lhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, rhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>
where S: Simd,

Source

fn faer_simd_scale_real<S>( simd: S, lhs: <<Self::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<Self::Real as Entity>::SimdUnit<S>>, rhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>
where S: Simd,

Source

fn faer_simd_conj_mul<S>( simd: S, lhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, rhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>
where S: Simd,

Source

fn faer_simd_mul_adde<S>( simd: S, lhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, rhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, acc: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>
where S: Simd,

Source

fn faer_simd_conj_mul_adde<S>( simd: S, lhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, rhs: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, acc: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>
where S: Simd,

Source

fn faer_simd_abs2_adde<S>( simd: S, values: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, acc: <<Self::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<Self::Real as Entity>::SimdUnit<S>>, ) -> <<Self::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<Self::Real as Entity>::SimdUnit<S>>
where S: Simd,

Source

fn faer_simd_abs2<S>( simd: S, values: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <<Self::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<Self::Real as Entity>::SimdUnit<S>>
where S: Simd,

Source

fn faer_simd_score<S>( simd: S, values: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> <<Self::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<Self::Real as Entity>::SimdUnit<S>>
where S: Simd,

Provided Methods§

Source

fn faer_is_nan(&self) -> bool

Returns true if self is a NaN value, or false otherwise.

Source

fn faer_is_finite(&self) -> bool

Returns true if self is a NaN value, or false otherwise.

Source

fn faer_partial_load<S>( simd: S, slice: <Self::Group as ForType>::FaerOf<&[Self::Unit]>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>
where S: Simd,

Source

fn faer_partial_store<S>( simd: S, slice: <Self::Group as ForType>::FaerOf<&mut [Self::Unit]>, values: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, )
where S: Simd,

Source

fn faer_partial_load_last<S>( simd: S, slice: <Self::Group as ForType>::FaerOf<&[Self::Unit]>, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>
where S: Simd,

Source

fn faer_partial_store_last<S>( simd: S, slice: <Self::Group as ForType>::FaerOf<&mut [Self::Unit]>, values: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, )
where S: Simd,

Source

fn faer_simd_splat<S>( simd: S, value: Self, ) -> <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>
where S: Simd,

Source

fn faer_simd_reduce_add<S>( simd: S, values: <Self::Group as ForCopyType>::FaerOfCopy<Self::SimdUnit<S>>, ) -> Self
where S: Simd,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl ComplexField for f32

Source§

type Real = f32

Source§

type Simd = Arch

Source§

type ScalarSimd = NoSimd

Source§

type PortableSimd = Arch

Source§

fn faer_from_f64(value: f64) -> f32

Source§

fn faer_add(self, rhs: f32) -> f32

Source§

fn faer_sub(self, rhs: f32) -> f32

Source§

fn faer_mul(self, rhs: f32) -> f32

Source§

fn faer_neg(self) -> f32

Source§

fn faer_inv(self) -> f32

Source§

fn faer_conj(self) -> f32

Source§

fn faer_sqrt(self) -> f32

Source§

fn faer_scale_real(self, rhs: <f32 as ComplexField>::Real) -> f32

Source§

fn faer_scale_power_of_two(self, rhs: <f32 as ComplexField>::Real) -> f32

Source§

fn faer_score(self) -> <f32 as ComplexField>::Real

Source§

fn faer_abs(self) -> <f32 as ComplexField>::Real

Source§

fn faer_abs2(self) -> <f32 as ComplexField>::Real

Source§

fn faer_nan() -> f32

Source§

fn faer_from_real(real: <f32 as ComplexField>::Real) -> f32

Source§

fn faer_real(self) -> <f32 as ComplexField>::Real

Source§

fn faer_imag(self) -> <f32 as ComplexField>::Real

Source§

fn faer_zero() -> f32

Source§

fn faer_one() -> f32

Source§

fn faer_align_offset<S>( simd: S, ptr: *const <f32 as Entity>::Unit, len: usize, ) -> Offset<<f32 as Entity>::SimdMask<S>>
where S: Simd,

Source§

fn faer_slice_as_aligned_simd<S>( simd: S, slice: &[<f32 as Entity>::Unit], offset: Offset<<f32 as Entity>::SimdMask<S>>, ) -> (Prefix<'_, <f32 as Entity>::Unit, S, <f32 as Entity>::SimdMask<S>>, &[<f32 as Entity>::SimdUnit<S>], Suffix<'_, <f32 as Entity>::Unit, S, <f32 as Entity>::SimdMask<S>>)
where S: Simd,

Source§

fn faer_slice_as_aligned_simd_mut<S>( simd: S, slice: &mut [<f32 as Entity>::Unit], offset: Offset<<f32 as Entity>::SimdMask<S>>, ) -> (PrefixMut<'_, <f32 as Entity>::Unit, S, <f32 as Entity>::SimdMask<S>>, &mut [<f32 as Entity>::SimdUnit<S>], SuffixMut<'_, <f32 as Entity>::Unit, S, <f32 as Entity>::SimdMask<S>>)
where S: Simd,

Source§

fn faer_slice_as_simd<S>( slice: &[<f32 as Entity>::Unit], ) -> (&[<f32 as Entity>::SimdUnit<S>], &[<f32 as Entity>::Unit])
where S: Simd,

Source§

fn faer_slice_as_simd_mut<S>( slice: &mut [<f32 as Entity>::Unit], ) -> (&mut [<f32 as Entity>::SimdUnit<S>], &mut [<f32 as Entity>::Unit])
where S: Simd,

Source§

fn faer_partial_load_last_unit<S>( simd: S, slice: &[<f32 as Entity>::Unit], ) -> <f32 as Entity>::SimdUnit<S>
where S: Simd,

Source§

fn faer_partial_store_last_unit<S>( simd: S, slice: &mut [<f32 as Entity>::Unit], values: <f32 as Entity>::SimdUnit<S>, )
where S: Simd,

Source§

fn faer_partial_load_unit<S>( simd: S, slice: &[<f32 as Entity>::Unit], ) -> <f32 as Entity>::SimdUnit<S>
where S: Simd,

Source§

fn faer_partial_store_unit<S>( simd: S, slice: &mut [<f32 as Entity>::Unit], values: <f32 as Entity>::SimdUnit<S>, )
where S: Simd,

Source§

fn faer_simd_splat_unit<S>( simd: S, unit: <f32 as Entity>::Unit, ) -> <f32 as Entity>::SimdUnit<S>
where S: Simd,

Source§

fn faer_simd_neg<S>( simd: S, values: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, ) -> <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_conj<S>( simd: S, values: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, ) -> <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_rotate_left<S>( simd: S, values: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, amount: usize, ) -> <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_add<S>( simd: S, lhs: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, rhs: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, ) -> <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_sub<S>( simd: S, lhs: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, rhs: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, ) -> <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_mul<S>( simd: S, lhs: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, rhs: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, ) -> <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_scale_real<S>( simd: S, lhs: <<<f32 as ComplexField>::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<<f32 as ComplexField>::Real as Entity>::SimdUnit<S>>, rhs: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, ) -> <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_conj_mul<S>( simd: S, lhs: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, rhs: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, ) -> <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_mul_adde<S>( simd: S, lhs: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, rhs: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, acc: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, ) -> <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_conj_mul_adde<S>( simd: S, lhs: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, rhs: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, acc: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, ) -> <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_reduce_add<S>( simd: S, values: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, ) -> f32
where S: Simd,

Source§

fn faer_simd_abs2<S>( simd: S, values: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, ) -> <<<f32 as ComplexField>::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<<f32 as ComplexField>::Real as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_abs2_adde<S>( simd: S, values: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, acc: <<<f32 as ComplexField>::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<<f32 as ComplexField>::Real as Entity>::SimdUnit<S>>, ) -> <<<f32 as ComplexField>::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<<f32 as ComplexField>::Real as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_score<S>( simd: S, values: <<f32 as Entity>::Group as ForCopyType>::FaerOfCopy<<f32 as Entity>::SimdUnit<S>>, ) -> <<<f32 as ComplexField>::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<<f32 as ComplexField>::Real as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_scalar_mul<S>(simd: S, lhs: f32, rhs: f32) -> f32
where S: Simd,

Source§

fn faer_simd_scalar_conj_mul<S>(simd: S, lhs: f32, rhs: f32) -> f32
where S: Simd,

Source§

fn faer_simd_scalar_mul_adde<S>(simd: S, lhs: f32, rhs: f32, acc: f32) -> f32
where S: Simd,

Source§

fn faer_simd_scalar_conj_mul_adde<S>( simd: S, lhs: f32, rhs: f32, acc: f32, ) -> f32
where S: Simd,

Source§

impl ComplexField for f64

Source§

type Real = f64

Source§

type Simd = Arch

Source§

type ScalarSimd = NoSimd

Source§

type PortableSimd = Arch

Source§

fn faer_from_f64(value: f64) -> f64

Source§

fn faer_add(self, rhs: f64) -> f64

Source§

fn faer_sub(self, rhs: f64) -> f64

Source§

fn faer_mul(self, rhs: f64) -> f64

Source§

fn faer_neg(self) -> f64

Source§

fn faer_inv(self) -> f64

Source§

fn faer_conj(self) -> f64

Source§

fn faer_sqrt(self) -> f64

Source§

fn faer_scale_real(self, rhs: <f64 as ComplexField>::Real) -> f64

Source§

fn faer_scale_power_of_two(self, rhs: <f64 as ComplexField>::Real) -> f64

Source§

fn faer_score(self) -> <f64 as ComplexField>::Real

Source§

fn faer_abs(self) -> <f64 as ComplexField>::Real

Source§

fn faer_abs2(self) -> <f64 as ComplexField>::Real

Source§

fn faer_nan() -> f64

Source§

fn faer_from_real(real: <f64 as ComplexField>::Real) -> f64

Source§

fn faer_real(self) -> <f64 as ComplexField>::Real

Source§

fn faer_imag(self) -> <f64 as ComplexField>::Real

Source§

fn faer_zero() -> f64

Source§

fn faer_one() -> f64

Source§

fn faer_align_offset<S>( simd: S, ptr: *const <f64 as Entity>::Unit, len: usize, ) -> Offset<<f64 as Entity>::SimdMask<S>>
where S: Simd,

Source§

fn faer_slice_as_aligned_simd<S>( simd: S, slice: &[<f64 as Entity>::Unit], offset: Offset<<f64 as Entity>::SimdMask<S>>, ) -> (Prefix<'_, <f64 as Entity>::Unit, S, <f64 as Entity>::SimdMask<S>>, &[<f64 as Entity>::SimdUnit<S>], Suffix<'_, <f64 as Entity>::Unit, S, <f64 as Entity>::SimdMask<S>>)
where S: Simd,

Source§

fn faer_slice_as_aligned_simd_mut<S>( simd: S, slice: &mut [<f64 as Entity>::Unit], offset: Offset<<f64 as Entity>::SimdMask<S>>, ) -> (PrefixMut<'_, <f64 as Entity>::Unit, S, <f64 as Entity>::SimdMask<S>>, &mut [<f64 as Entity>::SimdUnit<S>], SuffixMut<'_, <f64 as Entity>::Unit, S, <f64 as Entity>::SimdMask<S>>)
where S: Simd,

Source§

fn faer_slice_as_simd<S>( slice: &[<f64 as Entity>::Unit], ) -> (&[<f64 as Entity>::SimdUnit<S>], &[<f64 as Entity>::Unit])
where S: Simd,

Source§

fn faer_slice_as_simd_mut<S>( slice: &mut [<f64 as Entity>::Unit], ) -> (&mut [<f64 as Entity>::SimdUnit<S>], &mut [<f64 as Entity>::Unit])
where S: Simd,

Source§

fn faer_partial_load_last_unit<S>( simd: S, slice: &[<f64 as Entity>::Unit], ) -> <f64 as Entity>::SimdUnit<S>
where S: Simd,

Source§

fn faer_partial_store_last_unit<S>( simd: S, slice: &mut [<f64 as Entity>::Unit], values: <f64 as Entity>::SimdUnit<S>, )
where S: Simd,

Source§

fn faer_partial_load_unit<S>( simd: S, slice: &[<f64 as Entity>::Unit], ) -> <f64 as Entity>::SimdUnit<S>
where S: Simd,

Source§

fn faer_partial_store_unit<S>( simd: S, slice: &mut [<f64 as Entity>::Unit], values: <f64 as Entity>::SimdUnit<S>, )
where S: Simd,

Source§

fn faer_simd_splat_unit<S>( simd: S, unit: <f64 as Entity>::Unit, ) -> <f64 as Entity>::SimdUnit<S>
where S: Simd,

Source§

fn faer_simd_neg<S>( simd: S, values: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, ) -> <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_conj<S>( simd: S, values: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, ) -> <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_rotate_left<S>( simd: S, values: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, amount: usize, ) -> <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_add<S>( simd: S, lhs: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, rhs: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, ) -> <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_sub<S>( simd: S, lhs: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, rhs: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, ) -> <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_mul<S>( simd: S, lhs: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, rhs: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, ) -> <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_scale_real<S>( simd: S, lhs: <<<f64 as ComplexField>::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<<f64 as ComplexField>::Real as Entity>::SimdUnit<S>>, rhs: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, ) -> <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_conj_mul<S>( simd: S, lhs: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, rhs: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, ) -> <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_mul_adde<S>( simd: S, lhs: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, rhs: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, acc: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, ) -> <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_conj_mul_adde<S>( simd: S, lhs: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, rhs: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, acc: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, ) -> <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_reduce_add<S>( simd: S, values: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, ) -> f64
where S: Simd,

Source§

fn faer_simd_abs2<S>( simd: S, values: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, ) -> <<<f64 as ComplexField>::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<<f64 as ComplexField>::Real as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_abs2_adde<S>( simd: S, values: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, acc: <<<f64 as ComplexField>::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<<f64 as ComplexField>::Real as Entity>::SimdUnit<S>>, ) -> <<<f64 as ComplexField>::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<<f64 as ComplexField>::Real as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_score<S>( simd: S, values: <<f64 as Entity>::Group as ForCopyType>::FaerOfCopy<<f64 as Entity>::SimdUnit<S>>, ) -> <<<f64 as ComplexField>::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<<f64 as ComplexField>::Real as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_scalar_mul<S>(simd: S, lhs: f64, rhs: f64) -> f64
where S: Simd,

Source§

fn faer_simd_scalar_conj_mul<S>(simd: S, lhs: f64, rhs: f64) -> f64
where S: Simd,

Source§

fn faer_simd_scalar_mul_adde<S>(simd: S, lhs: f64, rhs: f64, acc: f64) -> f64
where S: Simd,

Source§

fn faer_simd_scalar_conj_mul_adde<S>( simd: S, lhs: f64, rhs: f64, acc: f64, ) -> f64
where S: Simd,

Source§

impl<E> ComplexField for Complex<E>
where E: RealField,

Source§

type Real = E

Source§

type Simd = <E as ComplexField>::Simd

Source§

type ScalarSimd = <E as ComplexField>::ScalarSimd

Source§

type PortableSimd = <E as ComplexField>::PortableSimd

Source§

fn faer_from_f64(value: f64) -> Complex<E>

Source§

fn faer_add(self, rhs: Complex<E>) -> Complex<E>

Source§

fn faer_sub(self, rhs: Complex<E>) -> Complex<E>

Source§

fn faer_mul(self, rhs: Complex<E>) -> Complex<E>

Source§

fn faer_neg(self) -> Complex<E>

Source§

fn faer_inv(self) -> Complex<E>

Source§

fn faer_conj(self) -> Complex<E>

Source§

fn faer_sqrt(self) -> Complex<E>

Source§

fn faer_scale_real(self, rhs: <Complex<E> as ComplexField>::Real) -> Complex<E>

Source§

fn faer_scale_power_of_two( self, rhs: <Complex<E> as ComplexField>::Real, ) -> Complex<E>

Source§

fn faer_score(self) -> <Complex<E> as ComplexField>::Real

Source§

fn faer_abs(self) -> <Complex<E> as ComplexField>::Real

Source§

fn faer_abs2(self) -> <Complex<E> as ComplexField>::Real

Source§

fn faer_nan() -> Complex<E>

Source§

fn faer_from_real(real: <Complex<E> as ComplexField>::Real) -> Complex<E>

Source§

fn faer_real(self) -> <Complex<E> as ComplexField>::Real

Source§

fn faer_imag(self) -> <Complex<E> as ComplexField>::Real

Source§

fn faer_zero() -> Complex<E>

Source§

fn faer_one() -> Complex<E>

Source§

fn faer_align_offset<S>( simd: S, ptr: *const <Complex<E> as Entity>::Unit, len: usize, ) -> Offset<<Complex<E> as Entity>::SimdMask<S>>
where S: Simd,

Source§

fn faer_slice_as_aligned_simd<S>( simd: S, slice: &[<Complex<E> as Entity>::Unit], offset: Offset<<Complex<E> as Entity>::SimdMask<S>>, ) -> (<Complex<E> as Entity>::PrefixUnit<'_, S>, &[<Complex<E> as Entity>::SimdUnit<S>], <Complex<E> as Entity>::SuffixUnit<'_, S>)
where S: Simd,

Source§

fn faer_slice_as_aligned_simd_mut<S>( simd: S, slice: &mut [<Complex<E> as Entity>::Unit], offset: Offset<<Complex<E> as Entity>::SimdMask<S>>, ) -> (<Complex<E> as Entity>::PrefixMutUnit<'_, S>, &mut [<Complex<E> as Entity>::SimdUnit<S>], <Complex<E> as Entity>::SuffixMutUnit<'_, S>)
where S: Simd,

Source§

fn faer_slice_as_simd<S>( slice: &[<Complex<E> as Entity>::Unit], ) -> (&[<Complex<E> as Entity>::SimdUnit<S>], &[<Complex<E> as Entity>::Unit])
where S: Simd,

Source§

fn faer_slice_as_simd_mut<S>( slice: &mut [<Complex<E> as Entity>::Unit], ) -> (&mut [<Complex<E> as Entity>::SimdUnit<S>], &mut [<Complex<E> as Entity>::Unit])
where S: Simd,

Source§

fn faer_partial_load_last_unit<S>( simd: S, slice: &[<Complex<E> as Entity>::Unit], ) -> <Complex<E> as Entity>::SimdUnit<S>
where S: Simd,

Source§

fn faer_partial_store_last_unit<S>( simd: S, slice: &mut [<Complex<E> as Entity>::Unit], values: <Complex<E> as Entity>::SimdUnit<S>, )
where S: Simd,

Source§

fn faer_partial_load_unit<S>( simd: S, slice: &[<Complex<E> as Entity>::Unit], ) -> <Complex<E> as Entity>::SimdUnit<S>
where S: Simd,

Source§

fn faer_partial_store_unit<S>( simd: S, slice: &mut [<Complex<E> as Entity>::Unit], values: <Complex<E> as Entity>::SimdUnit<S>, )
where S: Simd,

Source§

fn faer_simd_splat_unit<S>( simd: S, unit: <Complex<E> as Entity>::Unit, ) -> <Complex<E> as Entity>::SimdUnit<S>
where S: Simd,

Source§

fn faer_simd_neg<S>( simd: S, values: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, ) -> <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_conj<S>( simd: S, values: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, ) -> <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_rotate_left<S>( simd: S, values: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, amount: usize, ) -> <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_add<S>( simd: S, lhs: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, rhs: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, ) -> <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_sub<S>( simd: S, lhs: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, rhs: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, ) -> <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_scalar_mul<S>( simd: S, lhs: Complex<E>, rhs: Complex<E>, ) -> Complex<E>
where S: Simd,

Source§

fn faer_simd_scalar_mul_adde<S>( simd: S, lhs: Complex<E>, rhs: Complex<E>, acc: Complex<E>, ) -> Complex<E>
where S: Simd,

Source§

fn faer_simd_scalar_conj_mul_adde<S>( simd: S, lhs: Complex<E>, rhs: Complex<E>, acc: Complex<E>, ) -> Complex<E>
where S: Simd,

Source§

fn faer_simd_scalar_conj_mul<S>( simd: S, lhs: Complex<E>, rhs: Complex<E>, ) -> Complex<E>
where S: Simd,

Source§

fn faer_simd_mul<S>( simd: S, lhs: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, rhs: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, ) -> <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_scale_real<S>( simd: S, lhs: <<<Complex<E> as ComplexField>::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<<Complex<E> as ComplexField>::Real as Entity>::SimdUnit<S>>, rhs: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, ) -> <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_conj_mul<S>( simd: S, lhs: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, rhs: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, ) -> <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_mul_adde<S>( simd: S, lhs: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, rhs: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, acc: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, ) -> <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_conj_mul_adde<S>( simd: S, lhs: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, rhs: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, acc: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, ) -> <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_abs2_adde<S>( simd: S, values: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, acc: <<<Complex<E> as ComplexField>::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<<Complex<E> as ComplexField>::Real as Entity>::SimdUnit<S>>, ) -> <<<Complex<E> as ComplexField>::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<<Complex<E> as ComplexField>::Real as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_abs2<S>( simd: S, values: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, ) -> <<<Complex<E> as ComplexField>::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<<Complex<E> as ComplexField>::Real as Entity>::SimdUnit<S>>
where S: Simd,

Source§

fn faer_simd_score<S>( simd: S, values: <<Complex<E> as Entity>::Group as ForCopyType>::FaerOfCopy<<Complex<E> as Entity>::SimdUnit<S>>, ) -> <<<Complex<E> as ComplexField>::Real as Entity>::Group as ForCopyType>::FaerOfCopy<<<Complex<E> as ComplexField>::Real as Entity>::SimdUnit<S>>
where S: Simd,

Implementors§