This class is meant to be used with dynamic iteration primitives such as
while_loop and map_fn. It supports gradient back-propagation via special
"flow" control flow dependencies.
Note that although the array can be read multiple times and positions can be
overwritten, behavior may be undefined when storing multiple references to
the same array and clear_after_read is False. In particular, avoid using
methods like concat() to convert an intermediate TensorArray to a Tensor,
then further modifying the TensorArray, particularly if you need to backprop
through it later.
(optional) int32 scalar Tensor: the size of the TensorArray.
Required if handle is not provided.
dynamic_size
(optional) Python bool: If true, writes to the TensorArray
can grow the TensorArray past its initial size. Default: False.
clear_after_read
Boolean (optional, default: True). If True, clear
TensorArray values after reading them. This disables read-many
semantics, but allows early release of memory.
tensor_array_name
(optional) Python string: the name of the TensorArray.
This is used when creating the TensorArray handle. If this value is
set, handle should be None.
handle
(optional) A Tensor handle to an existing TensorArray. If this
is set, tensor_array_name should be None. Only supported in graph mode.
flow
(optional) A float Tensor scalar coming from an existing
TensorArray.flow. Only supported in graph mode.
infer_shape
(optional, default: True) If True, shape inference is
enabled. In this case, all elements must have the same shape.
element_shape
(optional, default: None) A TensorShape object specifying
the shape constraints of each of the elements of the TensorArray. Need
not be fully defined.
colocate_with_first_write_call
If True, the TensorArray will be
colocated on the same device as the Tensor used on its first write
(write operations include write, unstack, and split). If False,
the TensorArray will be placed on the device determined by the device
context available during its initialization.
name
A name for the operation (optional).
Raises
ValueError
if both handle and tensor_array_name are provided.
TypeError
if handle is provided but is not a Tensor.
Attributes
dtype
The data type of this TensorArray.
dynamic_size
Python bool; if True the TensorArray can grow dynamically.
Returns a TensorArray with the same content and properties.
Returns
A new TensorArray object with flow that ensures the control dependencies
from the contexts will become control dependencies for writes, reads, etc.
Use this object for all subsequent operations.