Function tensorflow::eager::raw_ops::collective_all_to_all_v3
source · pub fn collective_all_to_all_v3<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>>(
ctx: &'a Context,
input: &T0,
communicator: &T1,
group_assignment: &T2
) -> Result<TensorHandle<'a>>
Expand description
Shorthand for CollectiveAllToAllV3::new().call(&ctx, &input, &communicator, &group_assignment)
.
See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/CollectiveAllToAllV3