Home
last modified time | relevance | path

Searched refs:InferReshapeShape (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/
Dshape_inference.h248 static StatusOr<Shape> InferReshapeShape(const Shape& operand,
Dshape_inference_test.cc1384 auto status = ShapeInference::InferReshapeShape(operand, {1, 0}, {1}, in TEST_F()
1396 auto status = ShapeInference::InferReshapeShape(operand, {0}, {1, 10}, in TEST_F()
1407 auto status = ShapeInference::InferReshapeShape(operand, {1, 0}, {60}, in TEST_F()
1417 auto status = ShapeInference::InferReshapeShape(operand, {1, 0}, {2, 3, 10}, in TEST_F()
Dshape_inference.cc2943 /* static */ StatusOr<Shape> ShapeInference::InferReshapeShape( in InferReshapeShape() function in xla::ShapeInference
/external/tensorflow/tensorflow/compiler/xla/client/
Dxla_builder.cc1120 TF_ASSIGN_OR_RETURN(const Shape shape, ShapeInference::InferReshapeShape( in Reshape()