1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
|
# RUN: %PYTHON %s 2>&1 | FileCheck %s
import gc
from mlir.ir import *
from mlir.passmanager import *
from mlir.dialects.builtin import ModuleOp
from mlir.dialects import arith
from mlir.rewrite import *
def run(f):
print("\nTEST:", f.__name__)
f()
gc.collect()
return f
# CHECK-LABEL: TEST: testRewritePattern
@run
def testRewritePattern():
def to_muli(op, rewriter):
with rewriter.ip:
assert isinstance(op, arith.AddIOp)
new_op = arith.muli(op.lhs, op.rhs, loc=op.location)
rewriter.replace_op(op, new_op.owner)
def constant_1_to_2(op, rewriter):
c = op.value.value
if c != 1:
return True # failed to match
with rewriter.ip:
new_op = arith.constant(op.type, 2, loc=op.location)
rewriter.replace_op(op, [new_op])
with Context():
patterns = RewritePatternSet()
patterns.add(arith.AddIOp, to_muli)
patterns.add("arith.constant", constant_1_to_2)
frozen = patterns.freeze()
module = ModuleOp.parse(
r"""
module {
func.func @add(%a: i64, %b: i64) -> i64 {
%sum = arith.addi %a, %b : i64
return %sum : i64
}
}
"""
)
apply_patterns_and_fold_greedily(module, frozen)
# CHECK: %0 = arith.muli %arg0, %arg1 : i64
# CHECK: return %0 : i64
print(module)
module = ModuleOp.parse(
r"""
module {
func.func @const() -> (i64, i64) {
%0 = arith.constant 1 : i64
%1 = arith.constant 3 : i64
return %0, %1 : i64, i64
}
}
"""
)
apply_patterns_and_fold_greedily(module, frozen)
# CHECK: %c2_i64 = arith.constant 2 : i64
# CHECK: %c3_i64 = arith.constant 3 : i64
# CHECK: return %c2_i64, %c3_i64 : i64, i64
print(module)
module = ModuleOp.parse(
r"""
module {
func.func @add(%a: i64, %b: i64) -> i64 {
%sum = arith.addi %a, %b : i64
return %sum : i64
}
}
"""
)
walk_and_apply_patterns(module, frozen)
# CHECK: %0 = arith.muli %arg0, %arg1 : i64
# CHECK: return %0 : i64
print(module)
# CHECK-LABEL: TEST: testGreedyRewriteConfigCreation
@run
def testGreedyRewriteConfigCreation():
# Test basic config creation and destruction
config = GreedyRewriteConfig()
# CHECK: Config created successfully
print("Config created successfully")
# CHECK-LABEL: TEST: testGreedyRewriteConfigGetters
@run
def testGreedyRewriteConfigGetters():
config = GreedyRewriteConfig()
# Set some values
config.max_iterations = 5
config.max_num_rewrites = 50
config.use_top_down_traversal = True
config.enable_folding = False
config.strictness = GreedyRewriteStrictness.EXISTING_AND_NEW_OPS
config.region_simplification_level = GreedySimplifyRegionLevel.AGGRESSIVE
config.enable_constant_cse = True
# Test all getter methods and print results
# CHECK: max_iterations: 5
max_iterations = config.max_iterations
print(f"max_iterations: {max_iterations}")
# CHECK: max_rewrites: 50
max_rewrites = config.max_num_rewrites
print(f"max_rewrites: {max_rewrites}")
# CHECK: use_top_down: True
use_top_down = config.use_top_down_traversal
print(f"use_top_down: {use_top_down}")
# CHECK: folding_enabled: False
folding_enabled = config.enable_folding
print(f"folding_enabled: {folding_enabled}")
# CHECK: strictness: GreedyRewriteStrictness.EXISTING_AND_NEW_OPS
strictness = config.strictness
print(f"strictness: {strictness}")
# CHECK: region_level: GreedySimplifyRegionLevel.AGGRESSIVE
region_level = config.region_simplification_level
print(f"region_level: {region_level}")
# CHECK: cse_enabled: True
cse_enabled = config.enable_constant_cse
print(f"cse_enabled: {cse_enabled}")
# CHECK-LABEL: TEST: testGreedyRewriteStrictnessEnum
@run
def testGreedyRewriteStrictnessEnum():
config = GreedyRewriteConfig()
# Test ANY_OP
# CHECK: strictness ANY_OP: GreedyRewriteStrictness.ANY_OP
config.strictness = GreedyRewriteStrictness.ANY_OP
strictness = config.strictness
print(f"strictness ANY_OP: {strictness}")
# Test EXISTING_AND_NEW_OPS
# CHECK: strictness EXISTING_AND_NEW_OPS: GreedyRewriteStrictness.EXISTING_AND_NEW_OPS
config.strictness = GreedyRewriteStrictness.EXISTING_AND_NEW_OPS
strictness = config.strictness
print(f"strictness EXISTING_AND_NEW_OPS: {strictness}")
# Test EXISTING_OPS
# CHECK: strictness EXISTING_OPS: GreedyRewriteStrictness.EXISTING_OPS
config.strictness = GreedyRewriteStrictness.EXISTING_OPS
strictness = config.strictness
print(f"strictness EXISTING_OPS: {strictness}")
# CHECK-LABEL: TEST: testGreedySimplifyRegionLevelEnum
@run
def testGreedySimplifyRegionLevelEnum():
config = GreedyRewriteConfig()
# Test DISABLED
# CHECK: region_level DISABLED: GreedySimplifyRegionLevel.DISABLED
config.region_simplification_level = GreedySimplifyRegionLevel.DISABLED
level = config.region_simplification_level
print(f"region_level DISABLED: {level}")
# Test NORMAL
# CHECK: region_level NORMAL: GreedySimplifyRegionLevel.NORMAL
config.region_simplification_level = GreedySimplifyRegionLevel.NORMAL
level = config.region_simplification_level
print(f"region_level NORMAL: {level}")
# Test AGGRESSIVE
# CHECK: region_level AGGRESSIVE: GreedySimplifyRegionLevel.AGGRESSIVE
config.region_simplification_level = GreedySimplifyRegionLevel.AGGRESSIVE
level = config.region_simplification_level
print(f"region_level AGGRESSIVE: {level}")
# CHECK-LABEL: TEST: testRewriteWithGreedyRewriteConfig
@run
def testRewriteWithGreedyRewriteConfig():
def constant_1_to_2(op, rewriter):
c = op.value.value
if c != 1:
return True # failed to match
with rewriter.ip:
new_op = arith.constant(op.type, 2, loc=op.location)
rewriter.replace_op(op, [new_op])
with Context():
patterns = RewritePatternSet()
patterns.add(arith.ConstantOp, constant_1_to_2)
frozen = patterns.freeze()
module = ModuleOp.parse(
r"""
module {
func.func @const() -> (i64, i64) {
%0 = arith.constant 1 : i64
%1 = arith.constant 1 : i64
return %0, %1 : i64, i64
}
}
"""
)
config = GreedyRewriteConfig()
config.enable_constant_cse = False
apply_patterns_and_fold_greedily(module, frozen, config)
# CHECK: %c2_i64 = arith.constant 2 : i64
# CHECK: %c2_i64_0 = arith.constant 2 : i64
# CHECK: return %c2_i64, %c2_i64_0 : i64, i64
print(module)
config = GreedyRewriteConfig()
config.enable_constant_cse = True
apply_patterns_and_fold_greedily(module, frozen, config)
# CHECK: %c2_i64 = arith.constant 2 : i64
# CHECK: return %c2_i64, %c2_i64 : i64
print(module)
|