Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dreshape_op.cc38 const TensorShape sizes_shape = ctx->InputShape(1); in Compile() local
40 OP_REQUIRES(ctx, TensorShapeUtils::IsVector(sizes_shape), in Compile()
42 sizes_shape.DebugString())); in Compile()
43 const int64 num_dims = sizes_shape.num_elements(); in Compile()
/external/tensorflow/tensorflow/core/kernels/
Ddecode_proto_op.cc734 TensorShape sizes_shape = shape_prefix; in Compute() local
735 sizes_shape.AddDim(field_count); in Compute()
737 OP_REQUIRES_OK(ctx, ctx->allocate_output(0, sizes_shape, &sizes_tensor)); in Compute()
/external/tensorflow/tensorflow/core/framework/
Dcommon_shape_fns.cc1422 ShapeHandle sizes_shape; in SliceShape() local
1423 TF_RETURN_IF_ERROR(c->WithRank(c->input(2), 1, &sizes_shape)); in SliceShape()
1426 TF_RETURN_IF_ERROR(c->Merge(begin_shape, sizes_shape, &begin_shape)); in SliceShape()