Connects N inputs to an N-way replicated TPU computation.
tf.raw_ops.TPUReplicatedInput(
inputs, is_mirrored_variable=False, index=-1, is_packed=False, name=None
)
This operation holds a replicated input to a tpu.replicate()
computation subgraph.
Each replicated input has the same shape and type alongside the output.
For example:
%a = "tf.opA"()
%b = "tf.opB"()
%replicated_input = "tf.TPUReplicatedInput"(%a, %b)
%computation = "tf.Computation"(%replicated_input)
The above computation has a replicated input of two replicas.
Returns | |
---|---|
A Tensor . Has the same type as inputs .
|