[][src]Enum onednn_sys::dnnl_cpu_isa_t

#[repr(u32)]
#[non_exhaustive]pub enum dnnl_cpu_isa_t {
    dnnl_cpu_isa_all,
    dnnl_cpu_isa_sse41,
    dnnl_cpu_isa_avx,
    dnnl_cpu_isa_avx2,
    dnnl_cpu_isa_avx512_mic,
    dnnl_cpu_isa_avx512_mic_4ops,
    dnnl_cpu_isa_avx512_core,
    dnnl_cpu_isa_avx512_core_vnni,
    dnnl_cpu_isa_avx512_core_bf16,
}

CPU instruction set flags

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
dnnl_cpu_isa_all

Any ISA (no restrictions)

dnnl_cpu_isa_sse41

Intel Streaming SIMD Extensions 4.1 (Intel SSE4.1)

dnnl_cpu_isa_avx

Intel Advanced Vector Extensions (Intel AVX)

dnnl_cpu_isa_avx2

Intel Advanced Vector Extensions 2 (Intel AVX2)

dnnl_cpu_isa_avx512_mic

Intel Advanced Vector Extensions 512 (Intel AVX-512) subset for Intel Xeon Phi processors x200 Series.

dnnl_cpu_isa_avx512_mic_4ops

Intel AVX-512 subset for Intel Xeon Phi processors 7235, 7285, 7295 Series.

dnnl_cpu_isa_avx512_core

Intel AVX-512 subset for Intel Xeon Scalable processor family and Intel Core processor family.

dnnl_cpu_isa_avx512_core_vnni

Intel AVX-512 and Intel Deep Learning Boost (Intel DL Boost) support for Intel Xeon Scalable processor family and Intel Core processor family.

dnnl_cpu_isa_avx512_core_bf16

Intel AVX-512, Intel DL Boost and bfloat16 support for Intel Xeon Scalable processor family and Intel Core processor family.

Trait Implementations

impl Clone for dnnl_cpu_isa_t[src]

impl Copy for dnnl_cpu_isa_t[src]

impl Debug for dnnl_cpu_isa_t[src]

impl Eq for dnnl_cpu_isa_t[src]

impl Hash for dnnl_cpu_isa_t[src]

impl PartialEq<dnnl_cpu_isa_t> for dnnl_cpu_isa_t[src]

impl StructuralEq for dnnl_cpu_isa_t[src]

impl StructuralPartialEq for dnnl_cpu_isa_t[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.