-
Notifications
You must be signed in to change notification settings - Fork 305
/
Copy pathonnx_dynamic_shapes.json
82 lines (79 loc) · 1.91 KB
/
onnx_dynamic_shapes.json
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
{
"$schema": "./_schema.json",
"resources":
{
"a":
{
"initialValuesDataType": "FLOAT32",
"initialValues": [ 1, 2, 3, 4, 5, 6 ]
},
"b":
{
"initialValuesDataType": "FLOAT32",
"initialValues": [ 7, 8, 9, 10, 11, 12 ]
},
"c":
{
"initialValuesDataType": "FLOAT32",
"initialValues": { "valueCount": 12, "value": 0 }
},
"deferredY":
{
"initialValuesDataType": "FLOAT32",
"initialValues": "deferred"
}
},
"dispatchables":
{
"concat":
{
"type": "onnx",
"sourcePath": "onnx_dynamic_shapes.onnx"
}
},
"commands":
[
{
"type": "dispatch",
"dispatchable": "concat",
"bindings":
{
"x0": { "name": "a", "shape": [1,2] },
"x1": { "name": "b", "shape": [1,2] },
"y": { "name": "c", "shape": [2,2] }
}
},
{
"type": "print",
"resource": "c"
},
{
"type": "dispatch",
"dispatchable": "concat",
"bindings":
{
"x0": { "name": "a", "shape": [3,2] },
"x1": { "name": "b", "shape": [3,2] },
"y": { "name": "c", "shape": [6,2] }
}
},
{
"type": "print",
"resource": "c"
},
{
"type": "dispatch",
"dispatchable": "concat",
"bindings":
{
"x0": { "name": "a", "shape": [3,2] },
"x1": { "name": "b", "shape": [3,2] },
"y": { "name": "deferredY" }
}
},
{
"type": "print",
"resource": "deferredY"
}
]
}