[][src]Struct onednn_sys::dnnl_rnn_packed_desc_t

#[repr(C)]pub struct dnnl_rnn_packed_desc_t {
    pub format: dnnl_rnn_packed_memory_format_t,
    pub n_parts: c_int,
    pub n: c_int,
    pub ldb: c_int,
    pub parts: [c_int; 4],
    pub part_pack_size: [usize; 4],
    pub pack_part: [c_uint; 4],
    pub offset_compensation: usize,
    pub size: usize,
    pub reserved: [c_char; 200],
}

Description of tensor of packed weights for rnn.

Fields

format: dnnl_rnn_packed_memory_format_tn_parts: c_intn: c_intldb: c_intparts: [c_int; 4]part_pack_size: [usize; 4]pack_part: [c_uint; 4]offset_compensation: usizesize: usizereserved: [c_char; 200]

Trait Implementations

impl Clone for dnnl_rnn_packed_desc_t[src]

impl Copy for dnnl_rnn_packed_desc_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.