W3cubDocs

/TensorFlow C++

tensorflow::ops::Merge

#include <control_flow_ops.h>

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

Summary

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 for become available to output, and sets value_index to its index in inputs.

Arguments:

  • scope: A Scope object
  • inputs: The input tensors, exactly one of which will become available.

Returns:

  • Output output: Will be set to the available input tensor.
  • Output value_index: The index of the chosen input tensor in inputs.
Constructors and Destructors
Merge(const ::tensorflow::Scope & scope, ::tensorflow::InputList inputs)
Public attributes
output
value_index

Public attributes

output

::tensorflow::Output output

value_index

::tensorflow::Output value_index

Public functions

Merge

 Merge(
  const ::tensorflow::Scope & scope,
  ::tensorflow::InputList inputs
)

© 2017 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/api_docs/cc/class/tensorflow/ops/merge.html