cldnn-sys 0.1.0

Low-level Rust bindings to Intel's Compute Library for Deep Neural Networks
Documentation

pub const cldnn_filler_type_zero: cldnn_filler_type = 0;
pub const cldnn_filler_type_one: cldnn_filler_type = 1;
pub const cldnn_filler_type_xavier: cldnn_filler_type = 2;
pub type cldnn_filler_type = u32;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct cldnn_mutable_data_desc {
    pub type_: cldnn_primitive_type_id,
    pub id: cldnn_primitive_id,
    pub input: cldnn_primitive_id_arr,
    pub output_padding: cldnn_padding,
    pub mem: cldnn_memory,
    pub fill_type: cldnn_filler_type,
}
extern "C" {
    pub fn cldnn_mutable_data_type_id(status: *mut cldnn_status) -> cldnn_primitive_type_id;
}