pub trait SoftmaxLayerInt8Trait: SoftmaxLayerInt8TraitConst + SoftmaxLayerTrait {
    // Required method
    fn as_raw_mut_SoftmaxLayerInt8(&mut self) -> *mut c_void;

    // Provided methods
    fn set_output_sc(&mut self, val: f32) { ... }
    fn set_output_zp(&mut self, val: i32) { ... }
}
Expand description

Mutable methods for crate::dnn::SoftmaxLayerInt8

Required Methods§

Provided Methods§

source

fn set_output_sc(&mut self, val: f32)

source

fn set_output_zp(&mut self, val: i32)

Object Safety§

This trait is not object safe.

Implementors§