Function tensorflow::ops::quantized_mul
source · pub fn quantized_mul<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>, O5: Into<Output>>(
x: O0,
y: O1,
min_x: O2,
max_x: O3,
min_y: O4,
max_y: O5,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for QuantizedMul::new().build(x, y, min_x, max_x, min_y, max_y, scope)
.