Connects N outputs from an N-way replicated TPU computation.
tf.raw_ops.TPUReplicatedOutput(
input, num_replicas, name=None
)
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.
Args |
|---|
input
Tensor.
num_replicas
int that is >= 1.
name
Returns | |
|---|---|
A list of num_replicas Tensor objects with the same type as input.
|