HomeSort by relevance Sort by last modified time
    Searched refs:tensor_array (Results 1 - 8 of 8) sorted by null

  /external/tensorflow/tensorflow/core/kernels/
tensor_array_ops.cc 35 #include "tensorflow/core/kernels/tensor_array.h"
74 Status GetTensorArray(OpKernelContext* ctx, TensorArray** tensor_array) {
82 container + ta_handle, tensor_array));
85 return LookupResource(ctx, HandleFromInput(ctx, 0), tensor_array);
205 TensorArray* tensor_array = new TensorArray( variable
212 rm->Create(ctx->step_container()->name(), key, tensor_array));
214 *output_tensor_array = tensor_array;
303 TensorArray* tensor_array; variable
306 &tensor_array));
307 core::ScopedUnref unref(tensor_array);
402 TensorArray* tensor_array = nullptr; variable
485 TensorArray* tensor_array = nullptr; variable
572 TensorArray* tensor_array = nullptr; variable
798 TensorArray* tensor_array = nullptr; variable
1007 TensorArray* tensor_array = nullptr; variable
1204 TensorArray* tensor_array = nullptr; variable
1370 TensorArray* tensor_array; variable
1415 TensorArray* tensor_array; variable
    [all...]
tensor_array.cc 17 #include "tensorflow/core/kernels/tensor_array.h"
28 namespace tensor_array { namespace in namespace:tensorflow
80 } // namespace tensor_array
tensor_array.h 40 namespace tensor_array { namespace in namespace:tensorflow
42 // Full implementations are in tensor_array.cc
47 "tensor_array::AddToTensor type not supported: ",
75 "tensor_array::TensorSetZero type not supported: ",
99 } // namespace tensor_array
517 Status s = tensor_array::AddToTensor<Device, T>(ctx, existing_t,
525 Status s = tensor_array::AddToTensor<Device, T>(ctx, local_tensor_t,
612 Status s = tensor_array::TensorSetZero<Device, T>(ctx, tensor_t);
  /external/tensorflow/tensorflow/python/framework/
subscribe_test.py 254 tensor_array = tensor_array_ops.TensorArray(
259 writer = tensor_array.write(0, [[4.0, 5.0]])
272 tensor_array.handle, lambda t: script_ops.py_func(sub, [t], [t.dtype]))
273 self.assertIs(tensor_array_sub, tensor_array.handle)
274 self.assertFalse(subscribe._is_subscribed_identity(tensor_array.handle))
  /external/tensorflow/tensorflow/python/ops/
tensor_array_ops.py 425 tensor_array = ta._tensor_array
426 size = len(tensor_array)
433 tensor_array.extend([None for _ in range(index - size + 1)])
457 tensor_array[index] = value
697 tensor_array = array_ops.split(value, lengths, name=name)
698 ta._implementation._tensor_array = tensor_array # pylint: disable=protected-access
    [all...]
  /external/tensorflow/tensorflow/contrib/integrate/python/ops/
odes.py 244 def _ta_append(tensor_array, value):
246 return tensor_array.write(tensor_array.size(), value)
  /external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
model.py     [all...]
  /external/tensorflow/tensorflow/go/op/
wrappers.go     [all...]

Completed in 370 milliseconds