Home
last modified time | relevance | path

Searched refs:len_shape (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/ops/
Dstring_ops.cc262 ShapeHandle len_shape = c->input(2); in __anon4354d5f10702() local
265 if (c->RankKnown(len_shape)) { in __anon4354d5f10702()
266 TF_RETURN_IF_ERROR(c->WithRank(pos_shape, c->Rank(len_shape), &unused)); in __anon4354d5f10702()
271 DimensionHandle len_dim = c->Dim(len_shape, i); in __anon4354d5f10702()
275 " vs. ", c->DebugString(len_shape)); in __anon4354d5f10702()
/external/tensorflow/tensorflow/core/kernels/
Dsubstr_op.cc54 const TensorShape& len_shape = len_tensor.shape(); in Compute() local
55 OP_REQUIRES(context, (pos_shape == len_shape), in Compute()
58 pos_shape.DebugString(), " vs. ", len_shape.DebugString())); in Compute()