QueueEnqueue
tensorflow C++ API
Enqueues a tuple of one or more tensors in the given queue.
Summary
The components input has k elements, which correspond to the components of tuples stored in the given queue.
N.B. If the queue is full, this operation will block until the given element has been enqueued (or 'timeout_ms' elapses, if specified).
Arguments:
- scope: A Scope object
- handle: The handle to a queue.
- components: The type of each component in a tuple.
Optional attributes (seeAttrs
):
- timeout_ms: If the queue is full, this operation will block for up to timeout_ms milliseconds. Note: This option is not supported yet.
Returns:
- The created Operation
Constructor
- QueueEnqueue(const ::tensorflow::Scope & scope, ::tensorflow::Input handle, ::tensorflow::InputList components, const QueueEnqueue::Attrs & attrs) .
Public attributes
- tensorflow::Output Operation .
QueueEnqueue block
Source link : https://github.com/EXPNUNI/enuSpace-Tensorflow/blob/master/enuSpaceTensorflow/tf_data_flow_ops.cpp
Argument:
- Scope scope : A Scope object (A scope is generated automatically each page. A scope is not connected.)
- handle : connect Input node.
- components: connect Input node.
- QueueEnqueue::Attrs attrs : input attrs data. ex) timeout_ms=-1;
Return:
- Output Operation : There is no output data.
Result:
- std::vector(Tensor) product_result : There is no output data when calling session.