Home
last modified time | relevance | path

Searched refs:start_in (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
Dsequence_ops.cc36 const Tensor& start_in = context->input(0); in Compute() local
41 TensorShapeUtils::IsScalar(start_in.shape()) || in Compute()
42 (TensorShapeUtils::IsVector(start_in.shape()) && in Compute()
43 start_in.shape().dim_size(0) == 1), in Compute()
45 start_in.shape().DebugString())); in Compute()
58 const T start = start_in.scalar<T>()(); in Compute()
135 const Tensor& start_in = context->input(0); in Compute() local
138 OP_REQUIRES(context, TensorShapeUtils::IsScalar(start_in.shape()), in Compute()
140 start_in.shape().DebugString())); in Compute()
147 const T start = start_in.scalar<T>()(); in Compute()
/external/tensorflow/tensorflow/core/framework/
Dshape_inference.cc578 int64 start_in = start; in Subshape() local
601 return errors::InvalidArgument("Subshape start out of bounds: ", start_in, in Subshape()
618 end, " (computed from start ", start_in, " and end ", end_in, in Subshape()
625 start, " and ", end, " (computed from start ", start_in, " and end ", in Subshape()
/external/vulkan-validation-layers/layers/
Ddescriptor_sets.h46 IndexRange(uint32_t start_in, uint32_t end_in) : start(start_in), end(end_in) {} in IndexRange()