-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[mlir] introduce transform.loop.forall_to_for
Add a straightforward sequentialization transform from `scf.forall` to a nest of `scf.for` in absence of results and expose it as a transform op. This is helpful in combination with other transform ops, particularly fusion, that work best on parallel-by-construction `scf.forall` but later need to target sequential `for` loops.
- Loading branch information
Showing
4 changed files
with
174 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
// RUN: mlir-opt %s --test-transform-dialect-interpreter --split-input-file --verify-diagnostics | FileCheck %s | ||
|
||
func.func private @callee(%i: index, %j: index) | ||
|
||
// CHECK-LABEL: @two_iters | ||
// CHECK-SAME: %[[UB1:.+]]: index, %[[UB2:.+]]: index | ||
func.func @two_iters(%ub1: index, %ub2: index) { | ||
scf.forall (%i, %j) in (%ub1, %ub2) { | ||
func.call @callee(%i, %j) : (index, index) -> () | ||
} | ||
// CHECK: scf.for %[[IV1:.+]] = %{{.*}} to %[[UB1]] | ||
// CHECK: scf.for %[[IV2:.+]] = %{{.*}} to %[[UB2]] | ||
// CHECK: func.call @callee(%[[IV1]], %[[IV2]]) | ||
return | ||
} | ||
|
||
transform.sequence failures(propagate) { | ||
^bb0(%arg0: !transform.any_op): | ||
%0 = transform.structured.match ops{["scf.forall"]} in %arg0 : (!transform.any_op) -> !transform.any_op | ||
transform.loop.forall_to_for %0 : (!transform.any_op) -> (!transform.any_op, !transform.any_op) | ||
} | ||
|
||
// ----- | ||
|
||
func.func private @callee(%i: index, %j: index) | ||
|
||
func.func @repeated(%ub1: index, %ub2: index) { | ||
scf.forall (%i, %j) in (%ub1, %ub2) { | ||
func.call @callee(%i, %j) : (index, index) -> () | ||
} | ||
scf.forall (%i, %j) in (%ub1, %ub2) { | ||
func.call @callee(%i, %j) : (index, index) -> () | ||
} | ||
return | ||
} | ||
|
||
transform.sequence failures(propagate) { | ||
^bb0(%arg0: !transform.any_op): | ||
%0 = transform.structured.match ops{["scf.forall"]} in %arg0 : (!transform.any_op) -> !transform.any_op | ||
// expected-error @below {{expected a single payload op}} | ||
transform.loop.forall_to_for %0 : (!transform.any_op) -> (!transform.any_op, !transform.any_op) | ||
} | ||
|
||
// ----- | ||
|
||
func.func private @callee(%i: index, %j: index) | ||
|
||
func.func @repeated(%ub1: index, %ub2: index) { | ||
// expected-note @below {{payload op}} | ||
scf.forall (%i, %j) in (%ub1, %ub2) { | ||
func.call @callee(%i, %j) : (index, index) -> () | ||
} | ||
return | ||
} | ||
|
||
transform.sequence failures(propagate) { | ||
^bb0(%arg0: !transform.any_op): | ||
%0 = transform.structured.match ops{["scf.forall"]} in %arg0 : (!transform.any_op) -> !transform.any_op | ||
// expected-error @below {{op expects as many results (1) as payload has induction variables (2)}} | ||
transform.loop.forall_to_for %0 : (!transform.any_op) -> !transform.any_op | ||
} | ||
|
||
// ----- | ||
|
||
// expected-note @below {{payload op}} | ||
func.func private @callee(%i: index, %j: index) | ||
|
||
transform.sequence failures(propagate) { | ||
^bb0(%arg0: !transform.any_op): | ||
%0 = transform.structured.match ops{["func.func"]} in %arg0 : (!transform.any_op) -> !transform.any_op | ||
// expected-error @below {{expected the payload to be scf.forall}} | ||
transform.loop.forall_to_for %0 : (!transform.any_op) -> !transform.any_op | ||
} |