pub trait InnerProductLayerInt8Trait: InnerProductLayerInt8TraitConst + InnerProductLayerTrait {
    fn as_raw_mut_InnerProductLayerInt8(&mut self) -> *mut c_void;

    fn set_input_zp(&mut self, val: i32) { ... }
    fn set_output_zp(&mut self, val: i32) { ... }
    fn set_input_sc(&mut self, val: f32) { ... }
    fn set_output_sc(&mut self, val: f32) { ... }
    fn set_per_channel(&mut self, val: bool) { ... }
}

Required Methods§

Provided Methods§

Implementors§