[][src]Trait generic_simd::vector::Native

pub trait Native<Token> {
    type Width: Width;
}

Indicates the widest native vector.

Associated Types

type Width: Width

Loading content...

Implementations on Foreign Types

impl Native<Generic> for f32[src]

type Width = W1

impl Native<Generic> for f64[src]

type Width = W1

impl Native<Generic> for Complex<f32>[src]

type Width = W1

impl Native<Generic> for Complex<f64>[src]

type Width = W1

impl Native<Sse> for Complex<f32>[src]

type Width = W2

impl Native<Sse> for Complex<f64>[src]

type Width = W1

impl Native<Avx> for Complex<f32>[src]

type Width = W4

impl Native<Avx> for Complex<f64>[src]

type Width = W2

impl Native<Sse> for f32[src]

type Width = W4

impl Native<Sse> for f64[src]

type Width = W2

impl Native<Avx> for f32[src]

type Width = W8

impl Native<Avx> for f64[src]

type Width = W4

impl<T, Token> Native<Token> for [T] where
    T: Native<Token>, 
[src]

type Width = T::Width

Loading content...

Implementors

Loading content...