/external/tensorflow/tensorflow/compiler/xla/service/ |
D | gather_expander_test.cc | 104 EXPECT_TRUE(ShapeUtil::SameDimensions( in TEST_F() 108 EXPECT_TRUE(ShapeUtil::SameDimensions( in TEST_F() 112 EXPECT_TRUE(ShapeUtil::SameDimensions( in TEST_F()
|
D | reshape_mover.cc | 120 !ShapeUtil::SameDimensions(a->shape(), b->shape())) { in AreEquivalentReshapes() 127 return ShapeUtil::SameDimensions(a->operand(0)->shape(), in AreEquivalentReshapes() 288 if (!ShapeUtil::SameDimensions(operand->shape(), instruction->shape())) { in IsReshapeMoveCandidate()
|
D | hlo_evaluator.h | 338 TF_RET_CHECK(ShapeUtil::SameDimensions(shape, operand->shape())); in ElementWiseUnaryOpImpl()
|
D | hlo_evaluator_typed_visitor.h | 282 TF_RET_CHECK(ShapeUtil::SameDimensions(operand->shape(), convert->shape())); 292 TF_RET_CHECK(ShapeUtil::SameDimensions(operand->shape(), convert->shape())); 2977 TF_RET_CHECK(ShapeUtil::SameDimensions(shape, rhs->shape())); 2978 TF_RET_CHECK(ShapeUtil::SameDimensions(lhs->shape(), rhs->shape())); 3002 TF_RET_CHECK(ShapeUtil::SameDimensions(shape, lhs->shape())); 3003 TF_RET_CHECK(ShapeUtil::SameDimensions(lhs->shape(), rhs->shape())); 3004 TF_RET_CHECK(ShapeUtil::SameDimensions(rhs->shape(), ehs->shape()));
|
D | hlo_evaluator.cc | 713 DCHECK(ShapeUtil::SameDimensions(compare->shape(), rhs->shape()) && in HandleCompare() 714 ShapeUtil::SameDimensions(lhs->shape(), rhs->shape())); in HandleCompare() 2160 TF_RET_CHECK(ShapeUtil::SameDimensions(sort->operand(0)->shape(), in HandleSort()
|
D | shape_inference.cc | 1094 if (!ShapeUtil::SameDimensions(*operand_shapes[0], in InferVariadicOpShape() 2130 if (!ShapeUtil::SameDimensions(*reduced_args[0], *reduced_args[i])) { in InferReduceShape() 2204 if (!ShapeUtil::SameDimensions(*operands[0], *operands[i])) { in InferReduceWindowShape()
|
D | hlo_verifier.cc | 584 if (!ShapeUtil::SameDimensions(sort->operand(0)->shape(), in HandleSort()
|
D | algebraic_simplifier.cc | 1032 ShapeUtil::SameDimensions(lhs_update_window, rhs_update_window)) { in HandleAdd()
|
/external/tensorflow/tensorflow/compiler/xla/ |
D | shape_util_test.cc | 410 TEST(ShapeUtilTest, SameDimensions) { in TEST() argument 411 EXPECT_TRUE(ShapeUtil::SameDimensions(ShapeUtil::MakeShape(S32, {}), in TEST() 413 EXPECT_TRUE(ShapeUtil::SameDimensions(ShapeUtil::MakeShape(S32, {}), in TEST() 415 EXPECT_TRUE(ShapeUtil::SameDimensions(ShapeUtil::MakeShape(S32, {1}), in TEST() 417 EXPECT_TRUE(ShapeUtil::SameDimensions(ShapeUtil::MakeShape(S32, {0}), in TEST() 419 EXPECT_TRUE(ShapeUtil::SameDimensions(ShapeUtil::MakeShape(S32, {2}), in TEST() 421 EXPECT_FALSE(ShapeUtil::SameDimensions(ShapeUtil::MakeShape(S32, {1}), in TEST() 423 EXPECT_FALSE(ShapeUtil::SameDimensions(ShapeUtil::MakeShape(S32, {0, 0}), in TEST() 425 EXPECT_FALSE(ShapeUtil::SameDimensions(ShapeUtil::MakeShape(S32, {1}), in TEST() 427 EXPECT_FALSE(ShapeUtil::SameDimensions(ShapeUtil::MakeShape(S32, {}), in TEST() [all …]
|
D | shape.cc | 145 if (!ShapeUtil::SameDimensions(lhs, rhs)) { in operator ()()
|
D | shape_util.h | 248 static bool SameDimensions(const Shape& lhs, const Shape& rhs);
|
D | shape_util.cc | 641 /* static */ bool ShapeUtil::SameDimensions(const Shape& lhs, in SameDimensions() function in xla::ShapeUtil
|
/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/ |
D | loop_emitter.cc | 89 CHECK(ShapeUtil::SameDimensions(shape_, array.GetShape())) in LoopEmitter()
|
/external/tensorflow/tensorflow/compiler/xla/client/ |
D | xla_builder.cc | 670 if (!ShapeUtil::SameDimensions(shape, *updated_lhs_shape)) { in BinaryOp() 676 if (!ShapeUtil::SameDimensions(shape, *updated_rhs_shape)) { in BinaryOp() 2155 if (!ShapeUtil::SameDimensions(output_shape, *shape)) { in Map()
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | ir_emitter_unnested.cc | 5210 return ShapeUtil::SameDimensions(op_shape, parameter_shape) && in NumInputsInvolveInOnlyElementwiseOps()
|