summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Zinenko <zinenko@google.com>2018-12-06 11:34:27 -0800
committerjpienaar <jpienaar@google.com>2019-03-29 14:19:52 -0700
commit7c89a225cfafef3dcf5de4991846de2d0e9dda06 (patch)
treef1fa6bc1d2ff1afd92003b91b1a6bcbdaeb9f204
parent513d6d896ccf991ebc0acf85158d98e574f7b625 (diff)
downloadbcm5719-llvm-7c89a225cfafef3dcf5de4991846de2d0e9dda06.tar.gz
bcm5719-llvm-7c89a225cfafef3dcf5de4991846de2d0e9dda06.zip
ConvertToCFG: support min/max in loop bounds.
The recently introduced `select` operation enables ConvertToCFG to support min(max) in loop bounds. Individual min(max) is implemented as `cmpi "lt"`(`cmpi "gt"`) followed by a `select` between the compared values. Multiple results of an `affine_apply` operation extracted from the loop bounds are reduced using min(max) in a sequential manner. While this may decrease the potential for instruction-level parallelism, it is easier to recognize for the following passes, in particular for the vectorizer. PiperOrigin-RevId: 224376233
-rw-r--r--mlir/lib/Transforms/ConvertToCFG.cpp41
-rw-r--r--mlir/test/Transforms/convert2cfg.mlir92
2 files changed, 127 insertions, 6 deletions
diff --git a/mlir/lib/Transforms/ConvertToCFG.cpp b/mlir/lib/Transforms/ConvertToCFG.cpp
index 852358f193a..5d17371cc1a 100644
--- a/mlir/lib/Transforms/ConvertToCFG.cpp
+++ b/mlir/lib/Transforms/ConvertToCFG.cpp
@@ -54,6 +54,9 @@ public:
private:
CFGValue *getConstantIndexValue(int64_t value);
void visitStmtBlock(StmtBlock *stmtBlock);
+ CFGValue *buildMinMaxReductionSeq(
+ Location loc, CmpIPredicate predicate,
+ llvm::iterator_range<Operation::result_iterator> values);
CFGFunction *cfgFunc;
CFGFuncBuilder builder;
@@ -123,6 +126,34 @@ void FunctionConverter::visitStmtBlock(StmtBlock *stmtBlock) {
this->visit(&stmt);
}
+// Given a range of values, emit the code that reduces them with "min" or "max"
+// depending on the provided comparison predicate. The predicate defines which
+// comparison to perform, "lt" for "min", "gt" for "max" and is used for the
+// `cmpi` operation followed by the `select` operation:
+//
+// %cond = cmpi "predicate" %v0, %v1
+// %result = select %cond, %v0, %v1
+//
+// Multiple values are scanned in a linear sequence. This creates a data
+// dependences that wouldn't exist in a tree reduction, but is easier to
+// recognize as a reduction by the subsequent passes.
+CFGValue *FunctionConverter::buildMinMaxReductionSeq(
+ Location loc, CmpIPredicate predicate,
+ llvm::iterator_range<Operation::result_iterator> values) {
+ assert(!llvm::empty(values) && "empty min/max chain");
+
+ auto valueIt = values.begin();
+ CFGValue *value = cast<CFGValue>(*valueIt++);
+ for (; valueIt != values.end(); ++valueIt) {
+ auto cmpOp = builder.create<CmpIOp>(loc, predicate, value, *valueIt);
+ auto selectOp =
+ builder.create<SelectOp>(loc, cmpOp->getResult(), value, *valueIt);
+ value = cast<CFGValue>(selectOp->getResult());
+ }
+
+ return value;
+}
+
// Convert a "for" loop to a flow of basic blocks.
//
// Create an SESE region for the loop (including its body) and append it to the
@@ -235,15 +266,13 @@ void FunctionConverter::visitForStmt(ForStmt *forStmt) {
functional::map(remapOperands, forStmt->getLowerBoundOperands());
auto lbAffineApply = builder.create<AffineApplyOp>(
forStmt->getLoc(), forStmt->getLowerBoundMap(), operands);
- // TODO(zinenko): support min/max in loop bounds; this requires min/max
- // operations to be added to StandardOps first.
- assert(lbAffineApply->getNumOperands() <= 1 && "NYI: min/max bounds");
- CFGValue *lowerBound = cast<CFGValue>(lbAffineApply->getResult(0));
+ CFGValue *lowerBound = buildMinMaxReductionSeq(
+ forStmt->getLoc(), CmpIPredicate::SGT, lbAffineApply->getResults());
operands = functional::map(remapOperands, forStmt->getUpperBoundOperands());
auto ubAffineApply = builder.create<AffineApplyOp>(
forStmt->getLoc(), forStmt->getUpperBoundMap(), operands);
- assert(ubAffineApply->getNumOperands() <= 1 && "NYI: min/max bounds");
- CFGValue *upperBound = cast<CFGValue>(ubAffineApply->getResult(0));
+ CFGValue *upperBound = buildMinMaxReductionSeq(
+ forStmt->getLoc(), CmpIPredicate::SLT, ubAffineApply->getResults());
builder.create<BranchOp>(builder.getUnknownLoc(), loopConditionBlock,
lowerBound);
diff --git a/mlir/test/Transforms/convert2cfg.mlir b/mlir/test/Transforms/convert2cfg.mlir
index 825227e4f60..13849c041a9 100644
--- a/mlir/test/Transforms/convert2cfg.mlir
+++ b/mlir/test/Transforms/convert2cfg.mlir
@@ -9,6 +9,9 @@
// CHECK-DAG: [[map56:#map[0-9]+]] = () -> (56)
// CHECK-DAG: [[map1Sym:#map[0-9]+]] = ()[s0] -> (s0)
// CHECK-DAG: [[map1Id:#map[0-9]+]] = (d0) -> (d0)
+// CHECK-DAG: [[multiMap1:#map[0-9]+]] = (d0)[s0] -> (d0, d0 * -1 + s0)
+// CHECK-DAG: [[multiMap2:#map[0-9]+]] = (d0)[s0] -> (s0, d0 + 10)
+// CHECK-DAG: [[multi7Map:#map[0-9]+]] = (d0) -> (d0, d0, d0, d0, d0, d0, d0)
// Maps produced from individual affine expressions that appear in "if" conditions.
// CHECK-DAG: [[setMap20:#map[0-9]+]] = (d0) -> (d0 * -1 + 20)
// CHECK-DAG: [[setMap10:#map[0-9]+]] = (d0) -> (d0 - 10)
@@ -534,3 +537,92 @@ mlfunc @if_for() {
// CHECK-NEXT: return
return
}
+
+#lbMultiMap = (d0)[s0] -> (d0, s0 - d0)
+#ubMultiMap = (d0)[s0] -> (s0, d0 + 10)
+
+// CHECK-LABEL: cfgfunc @loop_min_max(index) {
+// CHECK-NEXT: bb0(%arg0: index):
+// CHECK-NEXT: br bb1
+// CHECK-NEXT: bb1: // pred: bb0
+// CHECK-NEXT: %{{[0-9]+}} = affine_apply [[map0]]()
+// CHECK-NEXT: %{{[0-9]+}} = affine_apply [[map42]]()
+// CHECK-NEXT: br bb2(%{{[0-9]+}} : index)
+// CHECK-NEXT: bb2(%{{[0-9]+}}: index): // 2 preds: bb1, bb7
+// CHECK-NEXT: %{{[0-9]+}} = cmpi "slt", %{{[0-9]+}}, %{{[0-9]+}} : index
+// CHECK-NEXT: cond_br %{{[0-9]+}}, bb3, bb8
+// CHECK-NEXT: bb3: // pred: bb2
+// CHECK-NEXT: br bb4
+// CHECK-NEXT: bb4: // pred: bb3
+// CHECK-NEXT: %[[lb:[0-9]+]] = affine_apply [[multiMap1]](%{{[0-9]+}})[%arg0]
+// CHECK-NEXT: %[[lbc:[0-9]+]] = cmpi "sgt", %[[lb]]#0, %[[lb]]#1 : index
+// CHECK-NEXT: %[[lbv:[0-9]+]] = select %[[lbc]], %[[lb]]#0, %[[lb]]#1 : index
+// CHECK-NEXT: %[[ub:[0-9]+]] = affine_apply [[multiMap2]](%{{[0-9]+}})[%arg0]
+// CHECK-NEXT: %[[ubc:[0-9]+]] = cmpi "slt", %[[ub]]#0, %[[ub]]#1 : index
+// CHECK-NEXT: %[[ubv:[0-9]+]] = select %[[ubc]], %[[ub]]#0, %[[ub]]#1 : index
+// CHECK-NEXT: br bb5(%[[lbv]] : index)
+// CHECK-NEXT: bb5(%{{[0-9]+}}: index): // 2 preds: bb4, bb6
+// CHECK-NEXT: %{{[0-9]+}} = cmpi "slt", %{{[0-9]+}}, %[[ubv]] : index
+// CHECK-NEXT: cond_br %{{[0-9]+}}, bb6, bb7
+// CHECK-NEXT: bb6: // pred: bb5
+// CHECK-NEXT: call @body2(%{{[0-9]+}}, %{{[0-9]+}}) : (index, index) -> ()
+// CHECK-NEXT: %c1 = constant 1 : index
+// CHECK-NEXT: %{{[0-9]+}} = addi %{{[0-9]+}}, %c1 : index
+// CHECK-NEXT: br bb5(%{{[0-9]+}} : index)
+// CHECK-NEXT: bb7: // pred: bb5
+// CHECK-NEXT: %c1_0 = constant 1 : index
+// CHECK-NEXT: %{{[0-9]+}} = addi %{{[0-9]+}}, %c1_0 : index
+// CHECK-NEXT: br bb2(%{{[0-9]+}} : index)
+// CHECK-NEXT: bb8: // pred: bb2
+// CHECK-NEXT: return
+// CHECK-NEXT: }
+mlfunc @loop_min_max(%N : index) {
+ for %i = 0 to 42 {
+ for %j = max #lbMultiMap(%i)[%N] to min #ubMultiMap(%i)[%N] {
+ call @body2(%i, %j) : (index, index) -> ()
+ }
+ }
+ return
+}
+
+#map_7_values = (i) -> (i, i, i, i, i, i, i)
+
+// Check that the "min" (cmpi "slt" + select) reduction sequence is emitted
+// correctly for a an affine map with 7 results.
+
+// CHECK-LABEL: cfgfunc @min_reduction_tree(index) {
+// CHECK-NEXT: bb0(%arg0: index):
+// CHECK-NEXT: br bb1
+// CHECK-NEXT: bb1: // pred: bb0
+// CHECK-NEXT: %{{[0-9]+}} = affine_apply [[map0]]()
+// CHECK-NEXT: %[[applr:[0-9]+]] = affine_apply [[multi7Map]](%arg0)
+// CHECK-NEXT: %[[c01:.+]] = cmpi "slt", %[[applr]]#0, %[[applr]]#1 : index
+// CHECK-NEXT: %[[r01:.+]] = select %[[c01]], %[[applr]]#0, %[[applr]]#1 : index
+// CHECK-NEXT: %[[c012:.+]] = cmpi "slt", %[[r01]], %[[applr]]#2 : index
+// CHECK-NEXT: %[[r012:.+]] = select %[[c012]], %[[r01]], %[[applr]]#2 : index
+// CHECK-NEXT: %[[c0123:.+]] = cmpi "slt", %[[r012]], %[[applr]]#3 : index
+// CHECK-NEXT: %[[r0123:.+]] = select %[[c0123]], %[[r012]], %[[applr]]#3 : index
+// CHECK-NEXT: %[[c01234:.+]] = cmpi "slt", %[[r0123]], %[[applr]]#4 : index
+// CHECK-NEXT: %[[r01234:.+]] = select %[[c01234]], %[[r0123]], %[[applr]]#4 : index
+// CHECK-NEXT: %[[c012345:.+]] = cmpi "slt", %[[r01234]], %[[applr]]#5 : index
+// CHECK-NEXT: %[[r012345:.+]] = select %[[c012345]], %[[r01234]], %[[applr]]#5 : index
+// CHECK-NEXT: %[[c0123456:.+]] = cmpi "slt", %[[r012345]], %[[applr]]#6 : index
+// CHECK-NEXT: %[[r0123456:.+]] = select %[[c0123456]], %[[r012345]], %[[applr]]#6 : index
+// CHECK-NEXT: br bb2(%0 : index)
+// CHECK-NEXT: bb2(%{{[0-9]+}}: index): // 2 preds: bb1, bb3
+// CHECK-NEXT: %{{[0-9]+}} = cmpi "slt", %{{[0-9]+}}, %[[r0123456]] : index
+// CHECK-NEXT: cond_br %{{[0-9]+}}, bb3, bb4
+// CHECK-NEXT: bb3: // pred: bb2
+// CHECK-NEXT: call @body(%{{[0-9]+}}) : (index) -> ()
+// CHECK-NEXT: %c1 = constant 1 : index
+// CHECK-NEXT: %{{[0-9]+}} = addi %{{[0-9]+}}, %c1 : index
+// CHECK-NEXT: br bb2(%{{[0-9]+}} : index)
+// CHECK-NEXT: bb4: // pred: bb2
+// CHECK-NEXT: return
+// CHECK-NEXT: }
+mlfunc @min_reduction_tree(%v : index) {
+ for %i = 0 to min #map_7_values(%v)[] {
+ call @body(%i) : (index) -> ()
+ }
+ return
+}
OpenPOWER on IntegriCloud