2020-07-07 07:28:26 +08:00
|
|
|
// RUN: mlir-hlo-opt %s -xla-hlo-sink-constants-to-control-flow | FileCheck %s
|
|
|
|
|
|
|
|
// Tests sinking constants to a while loop.
|
|
|
|
|
|
|
|
// CHECK-LABEL: func @sink_const_to_while
|
|
|
|
func @sink_const_to_while(%arg0: tensor<i64>) -> tensor<i64> {
|
2020-07-07 12:51:24 +08:00
|
|
|
// CHECK-NEXT: mhlo.while
|
|
|
|
%c0 = mhlo.constant dense<1> : tensor<i64>
|
|
|
|
%c1 = mhlo.constant dense<2> : tensor<i64>
|
|
|
|
%0 = "mhlo.while"(%arg0) ( {
|
2020-07-07 07:28:26 +08:00
|
|
|
^bb0(%arg1: tensor<i64>):
|
|
|
|
// CHECK: %[[ARG1A:.+]]: tensor<i64>
|
2020-07-07 12:51:24 +08:00
|
|
|
// CHECK: %[[C0:.+]] = mhlo.constant dense<1> : tensor<i64>
|
|
|
|
// CHECK: "mhlo.compare"(%[[C0]], %[[ARG1A]])
|
|
|
|
%1 = "mhlo.compare"(%c0, %arg1) {comparison_direction = "LT"} : (tensor<i64>, tensor<i64>) -> tensor<i1>
|
|
|
|
"mhlo.return"(%1) : (tensor<i1>) -> ()
|
2020-07-07 07:28:26 +08:00
|
|
|
}, {
|
|
|
|
^bb0(%arg1: tensor<i64>):
|
|
|
|
// CHECK: %[[ARG1B:.+]]: tensor<i64>
|
2020-07-07 12:51:24 +08:00
|
|
|
// CHECK-DAG: %[[C1:.+]] = mhlo.constant dense<2> : tensor<i64>
|
|
|
|
// CHECK-DAG: %[[ADD0:.+]] = mhlo.add %[[ARG1B]], %[[ARG1B]]
|
|
|
|
%2 = mhlo.add %arg1, %arg1 : tensor<i64>
|
|
|
|
// CHECK: %[[ADD1:.+]] = mhlo.add %[[C1]], %[[ADD0]]
|
|
|
|
%3 = mhlo.add %c1, %2 : tensor<i64>
|
|
|
|
// CHECK: %[[ADD2:.+]] = mhlo.add %[[C1]], %[[ADD1]]
|
|
|
|
%4 = mhlo.add %c1, %3 : tensor<i64>
|
|
|
|
"mhlo.return"(%4) : (tensor<i64>) -> ()
|
2020-07-07 07:28:26 +08:00
|
|
|
}) : (tensor<i64>) -> tensor<i64>
|
|
|
|
return %0 : tensor<i64>
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tests sinking constants to a conditional op.
|
|
|
|
|
|
|
|
// CHECK-LABEL: func @sink_const_to_conditional
|
|
|
|
func @sink_const_to_conditional(%arg0: tensor<i64>) -> tensor<i64> {
|
2020-07-07 12:51:24 +08:00
|
|
|
%c0 = mhlo.constant dense<1> : tensor<i64>
|
|
|
|
%c1 = mhlo.constant dense<2> : tensor<i64>
|
|
|
|
%0 = "mhlo.compare"(%arg0, %c0) {comparison_direction = "LT"} : (tensor<i64>, tensor<i64>) -> tensor<i1>
|
|
|
|
%1 = "mhlo.tuple"(%arg0) : (tensor<i64>) -> tuple<tensor<i64>>
|
|
|
|
// CHECK: mhlo.if
|
|
|
|
%2 = "mhlo.if"(%0, %1, %1) ( {
|
2020-07-07 07:28:26 +08:00
|
|
|
^bb0(%arg1: tuple<tensor<i64>>):
|
2020-07-07 12:51:24 +08:00
|
|
|
// CHECK: %[[C0:.+]] = mhlo.constant dense<1> : tensor<i64>
|
|
|
|
%3 = "mhlo.get_tuple_element"(%arg1) {index = 0 : i32} : (tuple<tensor<i64>>) -> tensor<i64>
|
|
|
|
// CHECK: %[[ADD0:.+]] = mhlo.add %[[C0]],
|
|
|
|
%4 = mhlo.add %c0, %3 : tensor<i64>
|
|
|
|
%5 = "mhlo.tuple"(%4) : (tensor<i64>) -> tuple<tensor<i64>>
|
|
|
|
"mhlo.return"(%5) : (tuple<tensor<i64>>) -> ()
|
2020-07-07 07:28:26 +08:00
|
|
|
}, {
|
|
|
|
^bb0(%arg1: tuple<tensor<i64>>):
|
2020-07-07 12:51:24 +08:00
|
|
|
// CHECK: %[[C1:.+]] = mhlo.constant dense<2> : tensor<i64>
|
|
|
|
%6 = "mhlo.get_tuple_element"(%arg1) {index = 0 : i32} : (tuple<tensor<i64>>) -> tensor<i64>
|
|
|
|
// CHECK: %[[ADD1:.+]] = mhlo.add %[[C1]],
|
|
|
|
%7 = mhlo.add %c1, %6 : tensor<i64>
|
|
|
|
%8 = "mhlo.tuple"(%7) : (tensor<i64>) -> tuple<tensor<i64>>
|
|
|
|
"mhlo.return"(%8) : (tuple<tensor<i64>>) -> ()
|
2020-07-07 07:28:26 +08:00
|
|
|
}) : (tensor<i1>, tuple<tensor<i64>>, tuple<tensor<i64>>) -> tuple<tensor<i64>>
|
2020-07-07 12:51:24 +08:00
|
|
|
%9 = "mhlo.get_tuple_element"(%2) {index = 0 : i32} : (tuple<tensor<i64>>) -> tensor<i64>
|
2020-07-07 07:28:26 +08:00
|
|
|
return %9 : tensor<i64>
|
|
|
|
}
|