Creates or finds a child frame, and makes data
available to the child frame.
tf.raw_ops.Enter(
data, frame_name, is_constant=False, parallel_iterations=10, name=None
)
This op is used together with Exit
to create loops in the graph.
The unique frame_name
is used by the Executor
to identify frames. If
is_constant
is true, output
is a constant in the child frame; otherwise
it may be changed in the child frame. At most parallel_iterations
iterations
are run in parallel in the child frame.
Returns | |
---|---|
A Tensor . Has the same type as data .
|