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.
%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 . |
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.3/api_docs/python/tf/raw_ops/TPUReplicatedOutput