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
39 OP_REQUIRES(context, IsLegacyScalar(start_in.shape()), in Compute()
41 start_in.shape().DebugString())); in Compute()
48 const T start = start_in.scalar<T>()(); in Compute()
125 const Tensor& start_in = context->input(0); in Compute() local
128 OP_REQUIRES(context, TensorShapeUtils::IsScalar(start_in.shape()), in Compute()
130 start_in.shape().DebugString())); in Compute()
137 const T start = start_in.scalar<T>()(); in Compute()
/external/tensorflow/tensorflow/core/framework/
Dshape_inference.cc638 int64 start_in = start; in Subshape() local
661 return errors::InvalidArgument("Subshape start out of bounds: ", start_in, in Subshape()
678 end, " (computed from start ", start_in, " and end ", end_in, in Subshape()
685 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()