pub fn quantized_mat_mul_with_bias_and_requantize<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>, O5: Into<Output>, O6: Into<Output>, O7: Into<Output>, O8: Into<Output>>(
    a: O0,
    b: O1,
    bias: O2,
    min_a: O3,
    max_a: O4,
    min_b: O5,
    max_b: O6,
    min_freezed_output: O7,
    max_freezed_output: O8,
    scope: &mut Scope
) -> Result<Operation>
Expand description

Shorthand for QuantizedMatMulWithBiasAndRequantize::new().build(a, b, bias, min_a, max_a, min_b, max_b, min_freezed_output, max_freezed_output, scope).