-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_graph_builder.py
443 lines (387 loc) · 16.8 KB
/
test_graph_builder.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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
import contextlib
import io
import unittest
import numpy as np
import onnx
from onnx_array_api.ext_test_case import ExtTestCase, skipif_ci_apple
from onnx_array_api.graph_api.graph_builder import GraphBuilder, OptimizationOptions
from onnx_array_api.reference import (
from_array_extended,
ExtendedReferenceEvaluator as ReferenceEvaluator,
)
class TestGraphBuilder(ExtTestCase):
def call_optimizer(self, onx):
gr = GraphBuilder(onx)
gr.remove_unused()
return gr.to_onnx()
def test_remove_unused_nodes(self):
model = onnx.parser.parse_model(
"""
<ir_version: 8, opset_import: [ "": 18]>
agraph (float[N] x) => (float[N] z) {
two = Constant <value_float=2.0> ()
four = Add(two, two)
z = Mul(x, x)
}"""
)
onx = self.call_optimizer(model)
self.assertEqual(len(onx.graph.node), 1)
self.assertEqual(onx.graph.node[0].op_type, "Mul")
def test_initializers(self):
model = onnx.parser.parse_model(
"""
<ir_version: 8, opset_import: [ "": 18]>
agraph (float[N] x) => (float[N] z)
<float two = {2.0}> {
four = Add(two, two)
z = Mul(x, x)
}"""
)
self.assertEqual(len(model.graph.initializer), 1)
onx = self.call_optimizer(model)
self.assertEqual(len(onx.graph.node), 1)
self.assertEqual(onx.graph.node[0].op_type, "Mul")
self.assertEqual(len(onx.graph.initializer), 0)
def test_keep_unused_outputs(self):
model = onnx.parser.parse_model(
"""
<ir_version: 8, opset_import: [ "": 18]>
agraph (float[N] x) => (float[M] z) {
w1, w2, w3 = Split (x)
z = Mul(w3, w3)
}"""
)
onx = self.call_optimizer(model)
self.assertEqual(len(onx.graph.node), 2)
self.assertEqual(onx.graph.node[0].op_type, "Split")
def test_exc(self):
self.assertRaise(lambda: GraphBuilder([]), NotImplementedError)
def test_simple(self):
with contextlib.redirect_stdout(io.StringIO()):
g = GraphBuilder(verbose=10)
shape = (10, 4)
w = np.random.randn(*shape).astype(np.float32)
x = g.make_tensor_input("X", np.float32, shape)
weight = g.make_initializer(w)
one = g.make_initializer(np.array([-1, 1], dtype=np.int64))
transposed = g.make_node("Transpose", [weight], perm=[1, 0])
res = g.op.MatMul(x, transposed)
g.op.Reshape(res, one, outputs="y")
g.make_tensor_output("y", np.float32, (10, 1))
onx = g.to_onnx()
ref = ReferenceEvaluator(onx)
x = np.random.randn(*shape).astype(np.float32)
expected = (x @ w.T).reshape((-1, 1))
feeds = {"X": x}
got = ref.run(None, feeds)
self.assertEqualArray(expected, got[0])
def test_simple_big(self):
with contextlib.redirect_stdout(io.StringIO()):
g = GraphBuilder(verbose=10)
shape = (30, 40)
w = np.random.randn(*shape).astype(np.float32)
x = g.make_tensor_input("X", np.float32, shape)
weight = g.make_initializer(w)
one = g.make_initializer(np.array([-1, 1], dtype=np.int64))
transposed = g.make_node("Transpose", [weight], perm=[1, 0])
res = g.op.MatMul(x, transposed)
g.op.Reshape(res, one, outputs="y")
g.make_tensor_output("y", np.float32, (30, 1))
onx = g.to_onnx()
ref = ReferenceEvaluator(onx)
x = np.random.randn(*shape).astype(np.float32)
expected = (x @ w.T).reshape((-1, 1))
feeds = {"X": x}
got = ref.run(None, feeds)
self.assertEqualArray(expected, got[0])
@skipif_ci_apple("libomp is missing")
def test_constant_folding(self):
with contextlib.redirect_stdout(io.StringIO()):
g = GraphBuilder(verbose=10)
shape = (10, 4)
w = np.random.randn(*shape).astype(np.float32)
x = g.make_tensor_input("X", np.float32, shape)
weight = g.make_initializer(w)
one = g.make_initializer(np.array([-1, 1], dtype=np.int64))
transposed = g.make_node("Transpose", [weight], perm=[1, 0])
res = g.op.MatMul(x, transposed)
g.op.Reshape(res, one, outputs="y")
g.make_tensor_output("y", np.float32, (10, 1))
g.constant_folding()
onx = g.to_onnx()
node_types = [n.op_type for n in onx.graph.node]
self.assertNotIn("Transpose", node_types)
ref = ReferenceEvaluator(onx)
x = np.random.randn(*shape).astype(np.float32)
expected = (x @ w.T).reshape((-1, 1))
feeds = {"X": x}
got = ref.run(None, feeds)
self.assertEqualArray(expected, got[0])
@skipif_ci_apple("libomp is missing")
def test_constant_folding2(self):
g = GraphBuilder(
optimization_options=OptimizationOptions(constant_folding=True)
)
shape = (10, 4)
w = np.random.randn(*shape).astype(np.float32)
x = g.make_tensor_input("X", np.float32, shape)
weight = g.make_initializer(w)
cst = g.get_constant(weight)
self.assertEqualArray(w, cst)
one = g.make_initializer(np.array([-1, 1], dtype=np.int64))
transposed = g.make_node("Transpose", [weight], perm=[1, 0])
res = g.op.MatMul(x, transposed)
g.op.Reshape(res, one, outputs="y")
g.make_tensor_output("y", np.float32, (10, 1))
g.optimize()
onx = g.to_onnx()
node_types = [n.op_type for n in onx.graph.node]
self.assertNotIn("Transpose", node_types)
ref = ReferenceEvaluator(onx)
x = np.random.randn(*shape).astype(np.float32)
expected = (x @ w.T).reshape((-1, 1))
feeds = {"X": x}
got = ref.run(None, feeds)
self.assertEqualArray(expected, got[0])
def test_remove_identity(self):
with contextlib.redirect_stdout(io.StringIO()):
g = GraphBuilder(verbose=10)
shape = (10, 4)
w = np.random.randn(*shape).astype(np.float32)
x = g.make_tensor_input("X", np.float32, shape)
weight = g.make_initializer(w)
one = g.make_initializer(np.array([-1, 1], dtype=np.int64))
transposed = g.make_node("Transpose", [weight], perm=[1, 0])
res = g.op.Identity(g.op.MatMul(x, transposed))
g.op.Reshape(res, one, outputs="y")
g.make_tensor_output("y", np.float32, (10, 1))
g.remove_identity_nodes()
onx = g.to_onnx()
node_types = [n.op_type for n in onx.graph.node]
self.assertNotIn("Identity", node_types)
ref = ReferenceEvaluator(onx)
x = np.random.randn(*shape).astype(np.float32)
expected = (x @ w.T).reshape((-1, 1))
feeds = {"X": x}
got = ref.run(None, feeds)
self.assertEqualArray(expected, got[0])
def test_remove_identity_input(self):
with contextlib.redirect_stdout(io.StringIO()):
g = GraphBuilder(verbose=10)
shape = (10, 4)
w = np.random.randn(*shape).astype(np.float32)
x = g.make_tensor_input("X", np.float32, shape)
x = g.op.Identity(x)
weight = g.make_initializer(w)
one = g.make_initializer(np.array([-1, 1], dtype=np.int64))
transposed = g.make_node("Transpose", [weight], perm=[1, 0])
res = g.op.MatMul(x, transposed)
g.op.Reshape(res, one, outputs="y")
g.make_tensor_output("y", np.float32, (10, 1))
g.remove_identity_nodes()
onx = g.to_onnx()
node_types = [n.op_type for n in onx.graph.node]
self.assertNotIn("Identity", node_types)
ref = ReferenceEvaluator(onx)
x = np.random.randn(*shape).astype(np.float32)
expected = (x @ w.T).reshape((-1, 1))
feeds = {"X": x}
got = ref.run(None, feeds)
self.assertEqualArray(expected, got[0])
def test_remove_identity_output(self):
with contextlib.redirect_stdout(io.StringIO()):
g = GraphBuilder(verbose=10)
shape = (10, 4)
w = np.random.randn(*shape).astype(np.float32)
x = g.make_tensor_input("X", np.float32, shape)
weight = g.make_initializer(w)
one = g.make_initializer(np.array([-1, 1], dtype=np.int64))
transposed = g.make_node("Transpose", [weight], perm=[1, 0])
res = g.op.MatMul(x, transposed)
r = g.op.Reshape(res, one)
g.op.Identity(r, outputs=["y"])
g.make_tensor_output("y", np.float32, (10, 1))
g.remove_identity_nodes()
onx = g.to_onnx()
node_types = [n.op_type for n in onx.graph.node]
self.assertNotIn("Identity", node_types)
ref = ReferenceEvaluator(onx)
x = np.random.randn(*shape).astype(np.float32)
expected = (x @ w.T).reshape((-1, 1))
feeds = {"X": x}
got = ref.run(None, feeds)
self.assertEqualArray(expected, got[0])
def test_remove_unused_nodes_simple(self):
with contextlib.redirect_stdout(io.StringIO()):
g = GraphBuilder(verbose=10)
shape = (10, 4)
w = np.random.randn(*shape).astype(np.float32)
x = g.make_tensor_input("X", np.float32, shape)
weight = g.make_initializer(w)
cst = g.make_initializer(np.array([2], dtype=np.float32))
one = g.make_initializer(np.array([-1, 1], dtype=np.int64))
transposed = g.make_node("Transpose", [weight], perm=[1, 0])
res = g.op.MatMul(x, transposed)
g.op.Add(res, cst)
g.op.Reshape(res, one, outputs=["y"])
g.make_tensor_output("y", np.float32, (10, 1))
g.remove_identity_nodes()
onx = g.to_onnx()
node_types = [n.op_type for n in onx.graph.node]
self.assertNotIn("Add", node_types)
ref = ReferenceEvaluator(onx)
x = np.random.randn(*shape).astype(np.float32)
expected = (x @ w.T).reshape((-1, 1))
feeds = {"X": x}
got = ref.run(None, feeds)
self.assertEqualArray(expected, got[0])
@skipif_ci_apple("libomp is missing")
def test_constant_array(self):
with contextlib.redirect_stdout(io.StringIO()):
g = GraphBuilder(verbose=10)
shape = (10, 4)
w = np.random.randn(*shape).astype(np.float32)
x = g.make_tensor_input("X", np.float32, shape)
one = g.make_initializer(np.array([-1, 1], dtype=np.int64))
res = g.op.MatMul(x, w.T)
g.op.Reshape(res, one, outputs="y")
g.make_tensor_output("y", np.float32, (10, 1))
onx = g.to_onnx()
ref = ReferenceEvaluator(onx)
x = np.random.randn(*shape).astype(np.float32)
expected = (x @ w.T).reshape((-1, 1))
feeds = {"X": x}
got = ref.run(None, feeds)
self.assertEqualArray(expected, got[0])
@skipif_ci_apple("libomp is missing")
def test_constant_array_2(self):
with contextlib.redirect_stdout(io.StringIO()):
g = GraphBuilder(verbose=10)
shape = (10, 4)
w = np.random.randn(*shape).astype(np.float32)
x = g.make_tensor_input("X", np.float32, shape)
one = g.make_initializer(np.array([-1, 1], dtype=np.int64))
opc = g.op.Constant(value=from_array_extended(w.T))
res = g.op.MatMul(x, opc)
g.op.Reshape(res, one, outputs="y")
g.make_tensor_output("y", np.float32, (10, 1))
self.assertTrue(g.has_shape("X"))
self.assertTrue(g.has_type("X"))
self.assertEqual(g.get_type("X"), 1)
self.assertEqual(g.get_shape("X"), (10, 4))
self.assertEqual(g.rank("X"), 2)
onx = g.to_onnx()
ref = ReferenceEvaluator(onx)
x = np.random.randn(*shape).astype(np.float32)
expected = (x @ w.T).reshape((-1, 1))
feeds = {"X": x}
got = ref.run(None, feeds)
self.assertEqualArray(expected, got[0])
def test_get_type(self):
g = GraphBuilder()
self.assertEqual(g._get_type(np.float32), onnx.TensorProto.FLOAT)
self.assertEqual(g._get_type(np.int64), onnx.TensorProto.INT64)
self.assertEqual(g._get_type(None), onnx.TensorProto.UNDEFINED)
def test_make_nodes_prefix(self):
g1 = GraphBuilder()
g1.make_tensor_input("X", np.float32, shape=None)
g1.op.Add("X", np.array([1], dtype=np.float32), outputs=["y"])
g1.make_tensor_output("y", np.float32, shape=None)
g = GraphBuilder()
shape = (10, 4)
w = np.random.randn(*shape).astype(np.float32)
x = g.make_tensor_input("X", np.float32, shape)
weight = g.make_initializer(w)
one = g.make_initializer(np.array([-1, 1], dtype=np.int64))
transposed = g.make_node("Transpose", [weight], perm=[1, 0])
res = g.op.MatMul(x, transposed)
res2 = g.make_nodes(g1, [res], ["k"], prefix="J")
g.op.Reshape(res2, one, outputs="y")
g.make_tensor_output("y", np.float32, (10, 1))
onx = g.to_onnx()
ref = ReferenceEvaluator(onx)
x = np.random.randn(*shape).astype(np.float32)
expected = (x @ w.T).reshape((-1, 1)) + 1
feeds = {"X": x}
got = ref.run(None, feeds)
self.assertEqualArray(expected, got[0])
def test_make_nodes_noprefix(self):
g1 = GraphBuilder()
g1.make_tensor_input("X", np.float32, shape=None)
g1.op.Add("X", np.array([1], dtype=np.float32), outputs=["y"])
g1.make_tensor_output("y", np.float32, shape=None)
g = GraphBuilder()
shape = (10, 4)
w = np.random.randn(*shape).astype(np.float32)
x = g.make_tensor_input("X", np.float32, shape)
weight = g.make_initializer(w)
one = g.make_initializer(np.array([-1, 1], dtype=np.int64))
transposed = g.make_node("Transpose", [weight], perm=[1, 0])
res = g.op.MatMul(x, transposed)
res2 = g.make_nodes(g1, [res], ["k"])
g.op.Reshape(res2, one, outputs="y")
g.make_tensor_output("y", np.float32, (10, 1))
onx = g.to_onnx()
ref = ReferenceEvaluator(onx)
x = np.random.randn(*shape).astype(np.float32)
expected = (x @ w.T).reshape((-1, 1)) + 1
feeds = {"X": x}
got = ref.run(None, feeds)
self.assertEqualArray(expected, got[0])
def test_node_pattern(self):
model = onnx.parser.parse_model(
"""
<ir_version: 8, opset_import: [ "": 18]>
agraph (float[N] x) => (float[N] z) {
two = Constant <value_float=2.0> ()
four = Add(two, two)
z = Mul(x, four)
}"""
)
gr = GraphBuilder(model)
p = gr.np(index=0)
r = repr(p)
self.assertEqual("NodePattern(index=0, op_type=None, name=None)", r)
def test_update_node_attribute(self):
model = onnx.parser.parse_model(
"""
<ir_version: 8, opset_import: [ "": 18]>
agraph (float[N] x) => (float[N] z) {
two = Constant <value_float=2.0> ()
four = Add(two, two)
z = Mul(x, four)
}"""
)
gr = GraphBuilder(model)
self.assertEqual(len(gr.nodes), 3)
m = gr.update_attribute(gr.np(op_type="Constant"), value_float=float(1))
self.assertEqual(m, 1)
self.assertEqual(len(gr.nodes), 3)
onx = gr.to_onnx()
self.assertEqual(len(onx.graph.node), 3)
node = onx.graph.node[0]
self.assertIn("f: 1", str(node))
def test_delete_node_attribute(self):
model = onnx.parser.parse_model(
"""
<ir_version: 8, opset_import: [ "": 18]>
agraph (float[N] x) => (float[N] z) {
two = Constant <value_float=2.0> ()
four = Add(two, two)
z = Mul(x, four)
}"""
)
gr = GraphBuilder(model)
self.assertEqual(len(gr.nodes), 3)
m = gr.update_attribute(
gr.np(op_type="Constant"), value_float=gr.DELETE, value_int=1
)
self.assertEqual(m, 1)
self.assertEqual(len(gr.nodes), 3)
onx = gr.to_onnx()
self.assertEqual(len(onx.graph.node), 3)
node = onx.graph.node[0]
self.assertNotIn('name: "value_float"', str(node))
self.assertIn("i: 1", str(node))
if __name__ == "__main__":
unittest.main(verbosity=2)