Home
last modified time | relevance | path

Searched refs:TensorArray (Results 1 – 25 of 87) sorted by relevance

1234

/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_TensorArrayGradV3.pbtxt9 The handle to the forward TensorArray.
21 The gradient source string, used to decide which gradient TensorArray
25 summary: "Creates a TensorArray for storing the gradients of values in the given handle."
27 If the given TensorArray gradient already exists, returns a reference to it.
29 Locks the size of the original TensorArray by disabling its dynamic size flag.
35 the forward TensorArray is dynamically sized, writes to this TensorArray
36 may resize the object. The gradient TensorArray is statically sized based
37 on the size of the forward TensorArray when this operation executes.
38 Furthermore, the size of the forward TensorArray is frozen by this call.
40 TensorArray only happens after all writes are executed.
[all …]
Dapi_def_TensorArrayGradWithShape.pbtxt9 The handle to the forward TensorArray.
23 elements in the TensorArray corresponding to the input handle.
29 The gradient source string, used to decide which gradient TensorArray
33 summary: "Creates a TensorArray for storing multiple gradients of values in the given handle."
36 expanded shape compared to the input TensorArray whose gradient is being
37 computed. This enables multiple gradients for the same TensorArray to be
Dapi_def_TensorArraySplitV3.pbtxt9 The handle to a TensorArray.
15 The concatenated tensor to write to the TensorArray.
22 TensorArray.
37 summary: "Split the data from the input value into TensorArray elements."
47 this splits values into a TensorArray with T tensors.
49 TensorArray index t will be the subtensor of values with starting position
Dapi_def_TensorArrayV3.pbtxt4 name: "TensorArray"
15 The handle to the TensorArray.
34 validate the shapes of TensorArray elements. If this shape is not
41 A boolean that determines whether writes to the TensorArray
48 If true (default), Tensors in the TensorArray are cleared
57 elements in the TensorArray will be expected to have have identical shapes.
68 resource. Default value is the name of the 'TensorArray' op (which
Dapi_def_TensorArrayGatherV3.pbtxt9 The handle to a TensorArray.
15 The locations in the TensorArray from which to read tensor elements.
27 All of the elements in the TensorArray, concatenated along a new
41 validate the shapes of TensorArray elements. If this shape is not
45 summary: "Gather specific elements from the TensorArray into output `value`."
Dapi_def_TensorArraySizeV3.pbtxt9 The handle to a TensorArray (output of TensorArray or TensorArrayGrad).
21 The current size of the TensorArray.
24 summary: "Get the current size of the TensorArray."
Dapi_def_TensorArrayCloseV3.pbtxt9 The handle to a TensorArray (output of TensorArray or TensorArrayGrad).
12 summary: "Delete the TensorArray from its resource container."
Dapi_def_TensorArrayReadV3.pbtxt9 The handle to a TensorArray.
21 The tensor that is read from the TensorArray.
30 summary: "Read an element from the TensorArray into output `value`."
Dapi_def_TensorArrayConcatV3.pbtxt9 The handle to a TensorArray.
21 All of the elements in the TensorArray, concatenated along the first
44 TensorArray elements. If this shape is not fully specified, concatenating
48 summary: "Concat the elements from the TensorArray into value `value`."
Dapi_def_TensorArrayWriteV3.pbtxt9 The handle to a TensorArray.
15 The position to write to inside the TensorArray.
21 The tensor to write to the TensorArray.
Dapi_def_TensorArrayScatterV3.pbtxt9 The handle to a TensorArray.
21 The concatenated tensor to write to the TensorArray.
36 summary: "Scatter the data from the input value into specific TensorArray elements."
Dapi_def_TensorArray.pbtxt2 graph_op_name: "TensorArray"
/external/tensorflow/tensorflow/compiler/tests/
Dtensor_array_ops_test.py53 ta = tensor_array_ops.TensorArray(
75 ta = tensor_array_ops.TensorArray(
96 ta = tensor_array_ops.TensorArray(
110 ta = tensor_array_ops.TensorArray(
132 ta = tensor_array_ops.TensorArray(
148 ta = tensor_array_ops.TensorArray(
164 ta = tensor_array_ops.TensorArray(
187 ta = tensor_array_ops.TensorArray(
205 ta = tensor_array_ops.TensorArray(
219 ta = tensor_array_ops.TensorArray(
[all …]
/external/tensorflow/tensorflow/python/kernel_tests/
Dtensor_array_ops_test.py63 return tensor_array_ops.TensorArray(
84 ta = tensor_array_ops.TensorArray(
105 ta = tensor_array_ops.TensorArray(
134 ta = tensor_array_ops.TensorArray(
149 ta = tensor_array_ops.TensorArray(
177 ta = tensor_array_ops.TensorArray(
193 ta = tensor_array_ops.TensorArray(
211 ta = tensor_array_ops.TensorArray(
325 ta = tensor_array_ops.TensorArray(
363 ta = tensor_array_ops.TensorArray(
[all …]
/external/tensorflow/tensorflow/python/ops/
Dtensor_array_grad.py103 g = (tensor_array_ops.TensorArray(dtype=dtype, handle=handle, flow=flow,
129 g = (tensor_array_ops.TensorArray(dtype=dtype, handle=handle, flow=flow,
160 g = (tensor_array_ops.TensorArray(dtype=dtype, handle=handle, flow=flow,
184 g = (tensor_array_ops.TensorArray(dtype=dtype, handle=handle, flow=flow,
215 g = (tensor_array_ops.TensorArray(dtype=dtype, handle=handle, flow=flow,
239 g = (tensor_array_ops.TensorArray(dtype=dtype, handle=handle, flow=flow,
/external/tensorflow/tensorflow/contrib/framework/python/ops/
Dprettyprint_ops.py50 elif isinstance(t, tensor_array_ops.TensorArray):
67 elif isinstance(t, tensor_array_ops.TensorArray):
84 elif isinstance(t, tensor_array_ops.TensorArray):
157 elif isinstance(input_, tensor_array_ops.TensorArray):
163 input_ = tensor_array_ops.TensorArray(dtype=input_.dtype,
/external/tensorflow/tensorflow/core/kernels/
Dtensor_array_ops.cc75 Status GetTensorArray(OpKernelContext* ctx, TensorArray** tensor_array) { in GetTensorArray()
120 TensorArray* output_tensor_array; in Compute()
150 TensorArray** output_tensor_array) = 0;
183 TensorArray** output_tensor_array) override { in CreateTensorArray()
200 TensorArray::tensor_array_counter.fetch_add(1)); in CreateTensorArray()
206 TensorArray* tensor_array = new TensorArray( in CreateTensorArray()
282 TensorArray** output_tensor_array) override { in CreateTensorArray()
308 TensorArray* tensor_array; in CreateTensorArray()
357 tensor_array_output_handle](TensorArray** ret) -> Status { in CreateTensorArray()
358 *ret = new TensorArray( in CreateTensorArray()
[all …]
Dtensor_array.cc83 std::atomic<int64> TensorArray::tensor_array_counter{0};
85 Status TensorArray::CopyShapesFrom(TensorArray* rhs, in CopyShapesFrom()
Dtensor_array.h132 class TensorArray : public ResourceBase {
140 TensorArray(const string& key, const DataType& dtype, const Tensor& handle, in TensorArray() function
337 Status CopyShapesFrom(TensorArray* rhs, const TensorShape* shape_to_prepend);
350 return MakePerStepResourceHandle<TensorArray>(ctx, key_); in resource_handle()
443 Status TensorArray::LockedWriteOrAggregate(OpKernelContext* ctx, in LockedWriteOrAggregate()
547 Status TensorArray::LockedRead(OpKernelContext* ctx, const int32 index, in LockedRead()
/external/tensorflow/tensorflow/python/ops/parallel_for/
Dcontrol_flow_ops_test.py491 ta = tensor_array_ops.TensorArray(
502 ta = tensor_array_ops.TensorArray(
513 t = tensor_array_ops.TensorArray(dtypes.int32, 10, clear_after_read=False)
522 out1 = tensor_array_ops.TensorArray(
527 out2 = tensor_array_ops.TensorArray(
537 ta1 = tensor_array_ops.TensorArray(dtypes.int32, 2).write(0, i).write(
539 ta2 = tensor_array_ops.TensorArray(dtypes.int32, 1).write(0, 1)
549 ta1 = tensor_array_ops.TensorArray(dtypes.int32, 2).scatter(
551 ta2 = tensor_array_ops.TensorArray(dtypes.int32,
561 ta1 = tensor_array_ops.TensorArray(
[all …]
/external/tensorflow/tensorflow/python/autograph/operators/
Ddata_structures.py96 l = tensor_array_ops.TensorArray(
189 if isinstance(list_, tensor_array_ops.TensorArray):
259 if isinstance(list_, tensor_array_ops.TensorArray):
323 if isinstance(list_, tensor_array_ops.TensorArray):
Dslices.py56 if isinstance(target, tensor_array_ops.TensorArray):
116 if isinstance(target, tensor_array_ops.TensorArray):
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.-tensor-array.pbtxt1 path: "tensorflow.TensorArray"
3 is_instance: "<class \'tensorflow.python.ops.tensor_array_ops.TensorArray\'>"
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.-tensor-array.pbtxt1 path: "tensorflow.TensorArray"
3 is_instance: "<class \'tensorflow.python.ops.tensor_array_ops.TensorArray\'>"
/external/tensorflow/tensorflow/core/api_def/python_api/
Dapi_def_TensorArray.pbtxt2 graph_op_name: "TensorArray"

1234