Type Definition simd_aligned::f64x8

source ·
pub type f64x8 = Simd<f64, 8>;
🔬This is a nightly-only experimental API. (portable_simd)
Expand description

A 512-bit SIMD vector with eight elements of type f64.

Trait Implementations§

source§

impl Simd for f64x8

§

type Element = f64

Element type of the SIMD vector
§

type LanesType = [f64; 8]

The type: [u32; Self::N].
source§

const LANES: usize = 8usize

The number of elements in the SIMD vector.
source§

fn splat(t: Self::Element) -> Self

Added for convenience
source§

impl SimdExt for f64x8

§

type T = f64

source§

fn sum(&self) -> Self::T