pub fn collective_reduce_v2<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>, T4: ToTensorHandle<'a>>(
    ctx: &'a Context,
    input: &T0,
    group_size: &T1,
    group_key: &T2,
    instance_key: &T3,
    ordering_token: &[&T4]
) -> Result<TensorHandle<'a>>
Expand description

Shorthand for CollectiveReduceV2::new().call(&ctx, &input, &group_size, &group_key, &instance_key, &ordering_token).

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