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
|
A Tensor .
|
num_replicas
|
An int that is >= 1 .
|
name
|
A name for the operation (optional). |
Returns | |
---|---|
A list of num_replicas Tensor objects with the same type as input .
|