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

Args:

  • 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

operation
output
value_index

Public attributes

operation

Operation operation

output

::tensorflow::Output output

value_index

::tensorflow::Output value_index

Public functions

Merge

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