-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathlinalg.py
371 lines (309 loc) · 13.3 KB
/
linalg.py
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
""" Implementation of the Linalg dialect. """
import inspect
import sys
import mlir.astnodes as mast
from mlir.dialect import Dialect, DialectOp, is_op
from dataclasses import dataclass
from typing import Optional, List, Tuple, Union
Literal = Union[mast.StringLiteral, float, int, bool]
SsaUse = Union[mast.SsaId, Literal]
@dataclass
class LinalgBatchMatmul(DialectOp):
a_id: mast.SsaId
b_id: mast.SsaId
a_type: mast.Type
b_type: mast.Type
c_id: mast.SsaId
c_type: mast.Type
out_type: Optional[mast.Type] = None
_syntax_ = [("linalg.batch_matmul"
" ins ( {a_id.ssa_id} , {b_id.ssa_id} : {a_type.type} , {b_type.type} )"
" outs ( {c_id.ssa_id} : {c_type.type} )"),
("linalg.batch_matmul"
" ins ( {a_id.ssa_id} , {b_id.ssa_id} : {a_type.type} , {b_type.type} )"
" init ( {c_id.ssa_id} : {c_type.type} ) -> {out_type.type}")]
@dataclass
class LinalgConvW(DialectOp):
in_id: mast.SsaId
filter_id: mast.SsaId
in_type: mast.Type
filter_type: mast.Type
out_id: mast.SsaId
out_type: mast.Type
_syntax_ = [("linalg.conv_1d"
" ins ( {in_id.ssa_id} , {filter_id.ssa_id} : {in_type.type} , {filter_type.type} )"
" outs ( {out_id.ssa_id} : {out_type.type} )")]
@dataclass
class LinalgConvHW(DialectOp):
in_id: mast.SsaId
filter_id: mast.SsaId
in_type: mast.Type
filter_type: mast.Type
out_id: mast.SsaId
out_type: mast.Type
_syntax_ = [("linalg.conv_2d"
" ins ( {in_id.ssa_id} , {filter_id.ssa_id} : {in_type.type} , {filter_type.type} )"
" outs ( {out_id.ssa_id} : {out_type.type} )")]
@dataclass
class LinalgConvDHW(DialectOp):
in_id: mast.SsaId
filter_id: mast.SsaId
in_type: mast.Type
filter_type: mast.Type
out_id: mast.SsaId
out_type: mast.Type
_syntax_ = [("linalg.conv_3d"
" ins ( {in_id.ssa_id} , {filter_id.ssa_id} : {in_type.type} , {filter_type.type} )"
" outs ( {out_id.ssa_id} : {out_type.type} )")]
@dataclass
class LinalgConv(DialectOp):
in_id: mast.SsaId
filter_id: mast.SsaId
in_type: mast.Type
filter_type: mast.Type
out_id: mast.SsaId
out_type: mast.Type
attr: Optional[mast.Attribute] = None
_syntax_ = [("linalg.conv( {in_id.ssa_id} , {filter_id.ssa_id} , {out_id.ssa_id} ) "
"{attr.attribute_value} : {in_type.type} , {filter_type.type} , {out_type.type}"),
("linalg.conv( {in_id.ssa_id} , {filter_id.ssa_id} , {out_id.ssa_id} ) "
" : {in_type.type} , {filter_type.type} , {out_type.type}")]
@dataclass
class LinalgCopy(DialectOp):
a_id: mast.SsaId
b_id: mast.SsaId
a_type: mast.Type
b_type: mast.Type
attr: Optional[mast.Attribute] = None
_syntax_ = [("linalg.copy( {a_id.ssa_id} , {b_id.ssa_id} ) "
"{attr.attribute_value} : {a_type.type} , {b_type.type}"),
("linalg.copy( {a_id.ssa_id} , {b_id.ssa_id} ) "
" : {a_type.type} , {b_type.type}")]
@dataclass
class LinalgDot(DialectOp):
in_a_id: mast.SsaId
in_b_id: mast.SsaId
in_a_type: mast.Type
in_b_type: mast.Type
out_id: mast.SsaId
out_type: mast.Type
_syntax_ = [("linalg.dot"
" ins ( {in_a_id.ssa_id} , {in_b_id.ssa_id} : {in_a_type.type} , {in_b_type.type} )"
" outs ( {out_id.ssa_id} : {out_type.type} )")]
@dataclass
class LinalgFill(DialectOp):
in_id: mast.SsaId
in_type: mast.Type
out_id: mast.SsaId
out_type: mast.Type
res_type: Optional[mast.Type] = None
attr: Optional[mast.Attribute] = None
_syntax_ = [("linalg.fill"
" ins ( {in_id.ssa_id} : {in_type.type} )"
" outs ( {out_id.ssa_id} : {out_type.type} )"
" {attr.attribute_value}"),
("linalg.fill"
" ins ( {in_id.ssa_id} : {in_type.type} )"
" outs ( {out_id.ssa_id} : {out_type.type} )"),
("linalg.fill"
" ins ( {in_id.ssa_id} : {in_type.type} )"
" outs ( {out_id.ssa_id} : {out_type.type} )"
" {attr.attribute_value} -> {res_type.type}"),
("linalg.fill"
" ins ( {in_id.ssa_id} : {in_type.type} )"
" outs ( {out_id.ssa_id} : {out_type.type} )"
" -> {res_type.type}")]
@dataclass
class FillRng2DOp(DialectOp):
min_id: mast.SsaId
min_type: mast.Type
max_id: mast.SsaId
max_type: mast.Type
seed_id: mast.SsaId
seed_type: mast.Type
out_id: mast.SsaId
out_type: mast.Type
res_type: Optional[mast.Type] = None
attr: Optional[mast.Attribute] = None
_syntax_ = [("linalg.fill_rng_2d"
" ins ( {min_id.ssa_id} , {max_id.ssa_id} , {seed_id.ssa_id} : {min_type.type} , {max_type.type} , {seed_type.type} )"
" outs ( {out_id.ssa_id} : {out_type.type} )"),
("linalg.fill_rng_2d"
" ins ( {min_id.ssa_id} , {max_id.ssa_id} , {seed_id.ssa_id} : {min_type.type} , {max_type.type} , {seed_type.type} )"
" outs ( {out_id.ssa_id} : {out_type.type} )"
" {attr.attribute_value}"),
("linalg.fill_rng_2d"
" ins ( {min_id.ssa_id} , {max_id.ssa_id} , {seed_id.ssa_id} : {min_type.type} , {max_type.type} , {seed_type.type} )"
" outs ( {out_id.ssa_id} : {out_type.type} ) -> {res_type.type}"),
("linalg.fill_rng_2d"
" ins ( {min_id.ssa_id} , {max_id.ssa_id} , {seed_id.ssa_id} : {min_type.type} , {max_type.type} , {seed_type.type} )"
" outs ( {out_id.ssa_id} : {out_type.type} )"
" {attr.attribute_value} -> {res_type.type}")]
@dataclass
class LinalgGeneric(DialectOp):
inargs: List[mast.SsaId]
in_types: List[mast.Type]
region: mast.Region
outargs: Optional[List[mast.SsaId]] = None
out_types: Optional[List[mast.Type]] = None
init_args: Optional[List[mast.SsaId]] = None
init_types: Optional[List[mast.Type]] = None
out_type: Optional[mast.Type] = None
attr: Optional[mast.Attribute] = None
_syntax_ = [("linalg.generic {attr.attribute_value} "
" ins ( {inargs.ssa_id_list} : {in_types.type_list_no_parens} )"
" outs ( {outargs.ssa_id_list} : {out_types.type_list_no_parens} )"
" {region.region}"),
("linalg.generic {attr.attribute_value} "
" ins ( {inargs.ssa_id_list} : {in_types.type_list_no_parens} )"
" outs ( {outargs.ssa_id_list} : {out_types.type_list_no_parens} )"
" {region.region} -> {out_type.type}"),
("linalg.generic {attr.attribute_value} "
" ins ( {inargs.ssa_id_list} : {in_types.type_list_no_parens} )"
" init ( {init_args.ssa_id_list} : {init_types.type_list_no_parens} )"
" {region.region} -> {out_type.type}")]
@dataclass
class LinalgIndexedGeneric(DialectOp):
inargs: List[mast.SsaId]
in_types: List[mast.Type]
region: mast.Region
outargs: Optional[List[mast.SsaId]] = None
out_types: Optional[List[mast.Type]] = None
init_args: Optional[List[mast.SsaId]] = None
init_types: Optional[List[mast.Type]] = None
out_type: Optional[mast.Type] = None
attr: Optional[mast.Attribute] = None
_syntax_ = [("linalg.indexed_generic {attr.attribute_value} "
" ins ( {inargs.ssa_id_list} : {in_types.type_list_no_parens} )"
" outs ( {outargs.ssa_id_list} : {out_types.type_list_no_parens} )"
" {region.region}"),
("linalg.indexed_generic {attr.attribute_value} "
" ins ( {inargs.ssa_id_list} : {in_types.type_list_no_parens} )"
" init ( {init_args.ssa_id_list} : {init_types.type_list_no_parens} )"
" {region.region} -> {out_type.type}")]
@dataclass
class LinalgRange(DialectOp):
min_id: mast.SsaId
max_id: mast.SsaId
step_id: mast.SsaId
out_type: mast.Type
attr: Optional[mast.Attribute] = None
_syntax_ = [("linalg.range {min_id.ssa_id} : {max_id.ssa_id} : {step_id.ssa_id}"
" {attr.attribute_value} : {out_type.type}"),
("linalg.range {min_id.ssa_id} : {max_id.ssa_id} : {step_id.ssa_id}"
" : {out_type.type}")]
@dataclass
class LinalgReduce(DialectOp):
inargs: List[mast.SsaId]
in_types: List[mast.Type]
outargs: List[mast.SsaId]
out_types: List[mast.Type]
dimensions: List[SsaUse]
region: mast.Region
args: List[Tuple[mast.SsaId, mast.Type]]
_syntax_ = [("linalg.reduce"
" ins ( {inargs.ssa_id_list} : {in_types.type_list_no_parens} )"
" outs ( {outargs.ssa_id_list} : {out_types.type_list_no_parens} )"
" dimensions = [ {dimensions.ssa_use_list} ]"
" ( {args.argument_list} ) {region.region}")]
@dataclass
class LinalgReshape(DialectOp):
src_id: mast.SsaId
src_type: mast.MemRefType
result_type: mast.MemRefType
reassociation: Optional[List[mast.AffineMap]] = None
attr: Optional[mast.Attribute] = None
_syntax_ = [("linalg.reshape {src_id.ssa_id}"
" [ {reassociation.affine_map_list} ] "
" {attr.attribute_value} "
" : {src_type.memref_type} into {result_type.memref_type}"),
("linalg.reshape {src_id.ssa_id}"
" [ ] "
" {attr.attribute_value} "
" : {src_type.memref_type} into {result_type.memref_type}"),
("linalg.reshape {src_id.ssa_id}"
" [ {reassociation.affine_map_list} ] "
" : {src_type.memref_type} into {result_type.memref_type}"),
("linalg.reshape {src_id.ssa_id}"
" [ ] "
" : {src_type.memref_type} into {result_type.memref_type}")]
@dataclass
class LinalgSlice(DialectOp):
view_id: mast.SsaId
indexing_ids: List[mast.SsaId]
view_type: mast.Type
indexing_types: List[mast.Type]
result_type: mast.Type
_syntax_ = ("linalg.slice {view_id.ssa_id} [ {indexing_ids.ssa_id_list} ]"
" : {view_type.type} , {indexing_types.type_list_no_parens} "
" , {result_type.type}")
@dataclass
class TensorReshape(DialectOp):
src_id: mast.SsaId
src_type: mast.MemRefType
result_type: mast.MemRefType
reassociation: Optional[List[mast.AffineMap]] = None
attr: Optional[mast.Attribute] = None
_syntax_ = [("linalg.tensor_reshape {src_id.ssa_id}"
" [ {reassociation.affine_map_list} ] "
" {attr.attribute_value} "
" : {src_type.tensor_type} into {result_type.tensor_type}"),
("linalg.tensor_reshape {src_id.ssa_id}"
" [ ] "
" {attr.attribute_value} "
" : {src_type.tensor_type} into {result_type.tensor_type}"),
("linalg.tensor_reshape {src_id.ssa_id}"
" [ {reassociation.affine_map_list} ] "
" : {src_type.tensor_type} into {result_type.tensor_type}"),
("linalg.tensor_reshape {src_id.ssa_id}"
" [ ] "
" : {src_type.tensor_type} into {result_type.tensor_type}")]
@dataclass
class LinalgYield(DialectOp):
operand_ids: List[mast.SsaId]
operand_types: List[mast.Type]
_syntax_ = ("linalg.yield {operand_ids.ssa_id_list}"
" : {operand_types.type_list_no_parens}")
@dataclass
class LinalgMatmul(DialectOp):
a_id: mast.SsaId
b_id: mast.SsaId
a_type: mast.Type
b_type: mast.Type
c_id: mast.SsaId
c_type: mast.Type
out_type: Optional[mast.Type] = None
_syntax_ = [("linalg.matmul"
" ins ( {a_id.ssa_id} , {b_id.ssa_id} : {a_type.type} , {b_type.type} )"
" outs ( {c_id.ssa_id} : {c_type.type} )"),
("linalg.matmul"
" ins ( {a_id.ssa_id} , {b_id.ssa_id} : {a_type.type} , {b_type.type} )"
" outs ( {c_id.ssa_id} : {c_type.type} ) -> {out_type.type}"),
("linalg.matmul"
" ins ( {a_id.ssa_id} , {b_id.ssa_id} : {a_type.type} , {b_type.type} )"
" init ( {c_id.ssa_id} : {c_type.type} ) -> {out_type.type}")]
@dataclass
class LinalgMatvec(DialectOp):
a_id: mast.SsaId
b_id: mast.SsaId
a_type: mast.Type
b_type: mast.Type
c_id: mast.SsaId
c_type: mast.Type
_syntax_ = [("linalg.matvec"
" ins ( {a_id.ssa_id} , {b_id.ssa_id} : {a_type.type} , {b_type.type} )"
" outs ( {c_id.ssa_id} : {c_type.type} )")]
@dataclass
class LinalgTranspose(DialectOp):
inarg: List[mast.SsaId]
in_type: List[mast.Type]
init: List[mast.SsaId]
init_type: List[mast.Type]
permutation: List[int]
_syntax_ = [("linalg.transpose"
" ins ( {inarg.ssa_id_list} : {in_type.type_list_no_parens} )"
" outs ( {init.ssa_id_list} : {init_type.type_list_no_parens} )"
" permutation = [ {permutation.ssa_use_list} ]")]
# Inspect current module to get all classes defined above
linalg = Dialect("linalg", ops=[m[1] for m in inspect.getmembers(
sys.modules[__name__], lambda obj: is_op(obj, __name__))])