pub fn quantized_mat_mul<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>, O5: Into<Output>>(
    a: O0,
    b: O1,
    min_a: O2,
    max_a: O3,
    min_b: O4,
    max_b: O5,
    scope: &mut Scope
) -> Result<Operation>
Expand description

Shorthand for QuantizedMatMul::new().build(a, b, min_a, max_a, min_b, max_b, scope).