W3cubDocs

/TensorFlow 2.4

tf.raw_ops.Merge

Forwards the value of an available tensor from inputs to output.

Merge waits for at least one of the tensors in inputs to become available. It is usually combined with Switch to implement branching.

Merge forwards the first tensor to become available to output, and sets value_index to its index in inputs.

Args
inputs A list of at least 1 Tensor objects with the same type. The input tensors, exactly one of which will become available.
name A name for the operation (optional).
Returns
A tuple of Tensor objects (output, value_index).
output A Tensor. Has the same type as inputs.
value_index A Tensor of type int32.

© 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.4/api_docs/python/tf/raw_ops/Merge