[XLA] No-op reshapes should not return true for inserting or deleting one-sized

dimensions.

PiperOrigin-RevId: 337296604
Change-Id: Ia87c85568c69908d61fdf4a5be2824f0e356cafd
This commit is contained in:
Blake Hechtman 2020-10-15 06:38:36 -07:00 committed by TensorFlower Gardener
parent ff81c67a45
commit 3825d321fb
2 changed files with 1 additions and 4 deletions

View File

@ -1074,8 +1074,7 @@ ShapeUtil::InsertedOrDeleted1SizedDimensions(const Shape& shape_pre,
}
}
return std::make_tuple(!deleted_indices.empty() || !inserted_indices.empty(),
deleted_indices, inserted_indices);
return std::make_tuple(true, deleted_indices, inserted_indices);
}
/* static */ std::vector<std::pair<int64, int64>>

View File

@ -558,8 +558,6 @@ TEST(ShapeUtilTest, InsertedOrDeleted1SizedDimensions) {
ShapeUtil::InsertedOrDeleted1SizedDimensions(shape0, shape1)));
EXPECT_FALSE(std::get<0>(
ShapeUtil::InsertedOrDeleted1SizedDimensions(shape0, shape2)));
EXPECT_FALSE(std::get<0>(
ShapeUtil::InsertedOrDeleted1SizedDimensions(shape0, shape0)));
}
TEST(ShapeUtilTest, ForEachIndex) {