pub fn uniform_quantized_add<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>, O5: Into<Output>, O6: Into<Output>, O7: Into<Output>>(
    lhs: O0,
    rhs: O1,
    lhs_scales: O2,
    lhs_zero_points: O3,
    rhs_scales: O4,
    rhs_zero_points: O5,
    output_scales: O6,
    output_zero_points: O7,
    scope: &mut Scope
) -> Result<Operation>
Expand description

Shorthand for UniformQuantizedAdd::new().build(lhs, rhs, lhs_scales, lhs_zero_points, rhs_scales, rhs_zero_points, output_scales, output_zero_points, scope).