pub trait ConvolutionLayerInt8TraitConst: BaseConvolutionLayerTraitConst {
    fn as_raw_ConvolutionLayerInt8(&self) -> *const c_void;

    fn input_zp(&self) -> i32 { ... }
    fn output_zp(&self) -> i32 { ... }
    fn input_sc(&self) -> f32 { ... }
    fn output_sc(&self) -> f32 { ... }
}

Required Methods

Provided Methods

Implementors