tf.raw_ops.TPUReplicatedOutput

Connects N outputs from an N-way replicated TPU computation.

This operation holds a replicated output from a tpu.replicate() computation subgraph. Each replicated output has the same shape and type alongside the input.

For example:

%computation = "tf.Computation"()
%replicated_output:2 = "tf.TPUReplicatedOutput"(%computation)

The above computation has a replicated output of two replicas.

input A Tensor.
num_replicas An int that is >= 1.
name A name for the operation (optional).

A list of num_replicas Tensor objects with the same type as input.