Open
Description
The Merge operation (https://www.tensorflow.org/api_docs/cc/class/tensorflow/ops/merge) should accept a list of inputs, and output the first received tensor.
However, the rust binding (https://tensorflow.github.io/rust/tensorflow/ops/fn.merge.html) currently accepts only a single input (despite the input variable being named "inputs"). Digging through the source code, I found that Merge.build_impl
internally also calls nd.add_input
instead of nd.add_inputs
(https://tensorflow.github.io/rust/src/tensorflow/ops/ops_impl.rs.html#57909)
Is there a way to pass multiple inputs using this api?