pub fn uniform_quantized_dot<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>, T4: ToTensorHandle<'a>, T5: ToTensorHandle<'a>, T6: ToTensorHandle<'a>, T7: ToTensorHandle<'a>>(
    ctx: &'a Context,
    lhs: &T0,
    rhs: &T1,
    lhs_scales: &T2,
    lhs_zero_points: &T3,
    rhs_scales: &T4,
    rhs_zero_points: &T5,
    output_scales: &T6,
    output_zero_points: &T7
) -> Result<TensorHandle<'a>>
Expand description

Shorthand for UniformQuantizedDot::new().call(&ctx, &lhs, &rhs, &lhs_scales, &lhs_zero_points, &rhs_scales, &rhs_zero_points, &output_scales, &output_zero_points).

See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/UniformQuantizedDot