2020-07-15 15:37:58 +08:00
|
|
|
/* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
==============================================================================*/
|
|
|
|
|
|
|
|
// Canonicalization patterns for the MHLO dialect.
|
|
|
|
|
2020-07-29 07:12:08 +08:00
|
|
|
include "mlir/Dialect/Shape/IR/ShapeOps.td"
|
2021-03-10 21:43:10 +08:00
|
|
|
include "mlir/Dialect/Tensor/IR/TensorOps.td"
|
2020-07-29 07:12:08 +08:00
|
|
|
include "mlir-hlo/Dialect/mhlo/IR/hlo_ops.td"
|
2020-07-15 15:37:58 +08:00
|
|
|
|
|
|
|
// Canonicalization patterns.
|
|
|
|
|
2020-07-27 22:13:38 +08:00
|
|
|
def DynamicBroadcastToOwnShape_1 : Pat<
|
2020-10-21 01:46:19 +08:00
|
|
|
(HLO_DynamicBroadcastInDimOp:$op $x,
|
|
|
|
(Shape_ToExtentTensorOp (Shape_ShapeOfOp $x)), $attr),
|
|
|
|
(replaceWithValue $x)>;
|
2020-07-27 22:13:38 +08:00
|
|
|
def DynamicBroadcastToOwnShape_2 : Pat<
|
2020-10-21 01:46:19 +08:00
|
|
|
(HLO_DynamicBroadcastInDimOp:$op $x, (Shape_ShapeOfOp $x), $attr),
|
|
|
|
(replaceWithValue $x)>;
|
2021-03-10 21:43:10 +08:00
|
|
|
def DynamicBroadcastToOwnShape_3 : Pat<
|
|
|
|
(HLO_DynamicBroadcastInDimOp:$op $x,
|
|
|
|
(Tensor_CastOp (Shape_ToExtentTensorOp (Shape_ShapeOfOp $x))), $attr),
|
|
|
|
(Tensor_CastOp $x)>;
|
|
|
|
def DynamicBroadcastToOwnShape_4 : Pat<
|
|
|
|
(HLO_DynamicBroadcastInDimOp:$op $x, (Tensor_CastOp (Shape_ShapeOfOp $x)), $attr),
|
|
|
|
(Tensor_CastOp $x)>;
|
2020-07-15 15:37:58 +08:00
|
|
|
|
2020-11-19 18:32:08 +08:00
|
|
|
def HasSameType : Constraint<CPred<"$0.getType() == $1.getType()">>;
|
|
|
|
|
2021-03-17 07:53:10 +08:00
|
|
|
def ShapeOfDynamicReshape : Pat<
|
|
|
|
(Shape_ShapeOfOp:$op (HLO_DynamicReshapeOp $x, $shape)),
|
|
|
|
(replaceWithValue $shape),
|
|
|
|
[(HasSameType $shape, $op)]>;
|
|
|
|
|
2020-11-19 18:32:08 +08:00
|
|
|
def IdentityBroadcastReshape : Pat<
|
|
|
|
(HLO_ReshapeOp:$op (HLO_BroadcastOp $input, $dims)),
|
|
|
|
(replaceWithValue $input),
|
|
|
|
[(HasSameType $input, $op)]>;
|
|
|
|
|
|
|
|
def IdentityBroadcastInDimReshape : Pat<
|
|
|
|
(HLO_ReshapeOp:$op (HLO_BroadcastInDimOp $input, $dims)),
|
|
|
|
(replaceWithValue $input),
|
|
|
|
[(HasSameType $input, $op)]>;
|