[mlir][math] Canonicalization for math.floor op
authorKai Sasaki <lewuathe@gmail.com>
Thu, 8 Sep 2022 23:59:18 +0000 (08:59 +0900)
committerKai Sasaki <lewuathe@gmail.com>
Fri, 9 Sep 2022 01:21:48 +0000 (10:21 +0900)
Support constant folding for math.floor op as well as math.ceil.

Reviewed By: Mogball

Differential Revision: https://reviews.llvm.org/D133398

mlir/include/mlir/Dialect/Math/IR/MathOps.td
mlir/lib/Dialect/Math/IR/MathOps.cpp
mlir/test/Dialect/Math/canonicalize.mlir

index adbc637..0e25d1b 100644 (file)
@@ -482,6 +482,8 @@ def Math_FloorOp : Math_FloatUnaryOp<"floor"> {
     %a = math.floor %b : f64
     ```
   }];
+
+  let hasFolder = 1;
 }
 
 //===----------------------------------------------------------------------===//
index 9b1b52b..7b3be5b 100644 (file)
@@ -428,6 +428,18 @@ OpFoldResult math::RoundEvenOp::fold(ArrayRef<Attribute> operands) {
 }
 
 //===----------------------------------------------------------------------===//
+// FloorOp folder
+//===----------------------------------------------------------------------===//
+
+OpFoldResult math::FloorOp::fold(ArrayRef<Attribute> operands) {
+  return constFoldUnaryOp<FloatAttr>(operands, [](const APFloat &a) {
+    APFloat result(a);
+    result.roundToIntegral(llvm::RoundingMode::TowardNegative);
+    return result;
+  });
+}
+
+//===----------------------------------------------------------------------===//
 // RoundOp folder
 //===----------------------------------------------------------------------===//
 
index 711ca3a..b0132d6 100644 (file)
@@ -411,3 +411,21 @@ func.func @round_fold_vec() -> (vector<4xf32>) {
   %0 = math.round %v1 : vector<4xf32>
   return %0 : vector<4xf32>
 }
+
+// CHECK-LABEL: @floor_fold
+// CHECK: %[[cst:.+]] = arith.constant 0.000000e+00 : f32
+// CHECK: return %[[cst]]
+func.func @floor_fold() -> f32 {
+  %c = arith.constant 0.3 : f32
+  %r = math.floor %c : f32
+  return %r : f32
+}
+
+// CHECK-LABEL: @floor_fold2
+// CHECK: %[[cst:.+]] = arith.constant 2.000000e+00 : f32
+// CHECK: return %[[cst]]
+func.func @floor_fold2() -> f32 {
+  %c = arith.constant 2.0 : f32
+  %r = math.floor %c : f32
+  return %r : f32
+}