blob: db5672f9489efb6872b948356055d93e33690175 [file] [log] [blame]
Nattapat Chaimanowong969eea32019-01-30 13:33:11 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
Derek Lamberti0028d1b2019-02-20 13:57:42 +00006namespace armnnSerializer;
Nattapat Chaimanowong969eea32019-01-30 13:33:11 +00007
8file_identifier "ARMN";
9
10file_extension "armnn";
11
Mike Kellyaf484012019-02-20 16:53:11 +000012enum ActivationFunction : byte {
13 Sigmoid = 0,
14 TanH = 1,
15 Linear = 2,
16 ReLu = 3,
17 BoundedReLu = 4,
18 SoftReLu = 5,
19 LeakyReLu = 6,
20 Abs = 7,
21 Sqrt = 8,
22 Square = 9
23}
24
Nattapat Chaimanowong969eea32019-01-30 13:33:11 +000025enum DataType : byte {
26 Float16 = 0,
27 Float32 = 1,
28 QuantisedAsymm8 = 2,
29 Signed32 = 3,
Nattapat Chaimanowongcd5ac232019-03-19 12:26:36 +000030 Boolean = 4,
31 QuantisedSymm16 = 5
Nattapat Chaimanowong969eea32019-01-30 13:33:11 +000032}
33
Saoirse Stewart3166c3e2019-02-18 15:24:53 +000034enum DataLayout : byte {
35 NHWC = 0,
36 NCHW = 1
37}
38
Nattapat Chaimanowong969eea32019-01-30 13:33:11 +000039table TensorInfo {
40 dimensions:[uint];
41 dataType:DataType;
42 quantizationScale:float = 1.0;
43 quantizationOffset:int = 0;
44}
45
46struct Connection {
47 sourceLayerIndex:uint;
48 outputSlotIndex:uint;
49}
50
51table ByteData {
52 data:[byte];
53}
54
55table ShortData {
56 data:[short];
57}
58
59table IntData {
60 data:[int];
61}
62
63table LongData {
64 data:[long];
65}
66
67union ConstTensorData { ByteData, ShortData, IntData, LongData }
68
69table ConstTensor {
70 info:TensorInfo;
71 data:ConstTensorData;
72}
73
74table InputSlot {
75 index:uint;
76 connection:Connection;
77}
78
79table OutputSlot {
80 index:uint;
81 tensorInfo:TensorInfo;
82}
83
84enum LayerType : uint {
85 Addition = 0,
86 Input = 1,
Sadik Armagan5f450272019-02-12 14:31:45 +000087 Multiplication = 2,
Aron Virginas-Tarfc413c02019-02-13 15:41:52 +000088 Output = 3,
Saoirse Stewart3166c3e2019-02-18 15:24:53 +000089 Pooling2d = 4,
Saoirse Stewart263829c2019-02-19 15:54:14 +000090 Reshape = 5,
Mike Kellya0766c32019-02-19 17:22:07 +000091 Softmax = 6,
Aron Virginas-Tarc04125f2019-02-19 16:31:08 +000092 Convolution2d = 7,
Mike Kellyaf484012019-02-20 16:53:11 +000093 DepthwiseConvolution2d = 8,
Nattapat Chaimanowong30b00202019-02-20 17:31:34 +000094 Activation = 9,
Sadik Armagandbb0c0c2019-02-21 09:01:41 +000095 Permute = 10,
Conor Kennedy76277882019-02-26 08:29:54 +000096 FullyConnected = 11,
Nattapat Chaimanowong45286992019-02-26 15:53:02 +000097 Constant = 12,
Nattapat Chaimanowong6b4ed982019-02-26 17:24:13 +000098 SpaceToBatchNd = 13,
Éanna Ó Catháin58885892019-02-27 16:16:39 +000099 BatchToSpaceNd = 14,
Aron Virginas-Tar0fe32452019-02-28 13:12:47 +0000100 Division = 15,
Nattapat Chaimanowong235cea52019-02-28 16:27:30 +0000101 Minimum = 16,
Aron Virginas-Tar377351e2019-02-27 14:42:31 +0000102 Equal = 17,
Nina Drozd57728782019-02-27 10:53:27 +0000103 Maximum = 18,
Nattapat Chaimanowongebb0f9c2019-03-01 12:14:06 +0000104 Normalization = 19,
Sadik Armagan8b42a382019-03-01 14:24:49 +0000105 Pad = 20,
Finn Williamsdd2ba7e2019-03-01 11:51:52 +0000106 Rsqrt = 21,
ruoyan018e7fa232019-02-28 15:09:07 +0000107 Floor = 22,
Conor Kennedy79ffdf52019-03-01 14:24:54 +0000108 BatchNormalization = 23,
Nattapat Chaimanowong6522cdc2019-03-01 16:14:13 +0000109 Greater = 24,
Conor Kennedyda1f9752019-03-01 14:37:12 +0000110 ResizeBilinear = 25,
Nattapat Chaimanowongb3485212019-03-04 12:35:39 +0000111 Subtraction = 26,
Saoirse Stewarta1ed73a2019-03-04 13:40:12 +0000112 StridedSlice = 27,
Sadik Armaganac97c8c2019-03-04 17:44:21 +0000113 Gather = 28,
Jim Flynnac25a1b2019-02-28 10:40:49 +0000114 Mean = 29,
Narumol Prangnawarat495701f2019-03-07 17:31:34 +0000115 Merger = 30,
Jim Flynn18ce3382019-03-08 11:08:30 +0000116 L2Normalization = 31,
Nattapat Chaimanowong3e14a9d2019-03-18 12:37:06 +0000117 Splitter = 32,
Jim Flynn11af3752019-03-19 17:22:29 +0000118 DetectionPostProcess = 33,
Derek Lamberti87acb272019-03-27 16:51:31 +0000119 Lstm = 34,
Nattapat Chaimanowonge4294fd2019-03-28 09:56:53 +0000120 Quantize = 35,
Nattapat Chaimanowong1f886302019-04-05 13:37:19 +0100121 Dequantize = 36,
Sadik Armaganeff363d2019-04-05 15:25:46 +0100122 Merge = 37,
Jim Flynne242f2d2019-05-22 14:24:13 +0100123 Switch = 38,
Aron Virginas-Taraa067142019-06-11 16:01:44 +0100124 Concat = 39,
Ellen Norris-Thompson51982472019-06-19 11:46:21 +0100125 SpaceToDepth = 40,
126 Prelu = 41
Nattapat Chaimanowong969eea32019-01-30 13:33:11 +0000127}
128
129// Base layer table to be used as part of other layers
130table LayerBase {
131 index:uint;
132 layerName:string;
133 layerType:LayerType;
134 inputSlots:[InputSlot];
135 outputSlots:[OutputSlot];
136}
137
138table BindableLayerBase {
139 base:LayerBase;
140 layerBindingId:int;
141}
142
143// Table for each layer defined below
Mike Kellyaf484012019-02-20 16:53:11 +0000144table ActivationLayer {
145 base:LayerBase;
146 descriptor:ActivationDescriptor;
147}
148
149table ActivationDescriptor {
150 function:ActivationFunction = Sigmoid;
151 a:float;
152 b:float;
153}
154
Nattapat Chaimanowong969eea32019-01-30 13:33:11 +0000155table AdditionLayer {
156 base:LayerBase;
157}
158
Conor Kennedy76277882019-02-26 08:29:54 +0000159table ConstantLayer {
160 base:LayerBase;
161 input:ConstTensor;
162}
163
Mike Kellya0766c32019-02-19 17:22:07 +0000164table Convolution2dLayer {
165 base:LayerBase;
166 descriptor:Convolution2dDescriptor;
167 weights:ConstTensor;
168 biases:ConstTensor;
169}
170
171table Convolution2dDescriptor {
172 padLeft:uint;
173 padRight:uint;
174 padTop:uint;
175 padBottom:uint;
176 strideX:uint;
177 strideY:uint;
Matthew Benthamacad04e2019-05-13 10:02:45 +0100178 dilationX:uint = 1;
179 dilationY:uint = 1;
Mike Kellya0766c32019-02-19 17:22:07 +0000180 biasEnabled:bool = false;
181 dataLayout:DataLayout = NCHW;
182}
183
Éanna Ó Catháin58885892019-02-27 16:16:39 +0000184table DivisionLayer {
185 base:LayerBase;
186}
187
Nattapat Chaimanowong235cea52019-02-28 16:27:30 +0000188table EqualLayer {
189 base:LayerBase;
190}
191
Finn Williamsdd2ba7e2019-03-01 11:51:52 +0000192table FloorLayer{
193 base:LayerBase;
194}
195
Sadik Armagandbb0c0c2019-02-21 09:01:41 +0000196table FullyConnectedLayer {
197 base:LayerBase;
198 descriptor:FullyConnectedDescriptor;
199 weights:ConstTensor;
200 biases:ConstTensor;
201}
202
203table FullyConnectedDescriptor {
204 biasEnabled:bool = false;
205 transposeWeightsMatrix:bool = false;
206}
207
Saoirse Stewarta1ed73a2019-03-04 13:40:12 +0000208table GatherLayer {
209 base:LayerBase;
210}
211
Conor Kennedy79ffdf52019-03-01 14:24:54 +0000212table GreaterLayer {
213 base:LayerBase;
214}
215
Nattapat Chaimanowong969eea32019-01-30 13:33:11 +0000216table InputLayer {
217 base:BindableLayerBase;
218}
219
Narumol Prangnawarat495701f2019-03-07 17:31:34 +0000220table L2NormalizationLayer {
221 base:LayerBase;
222 descriptor:L2NormalizationDescriptor;
223}
224
225table L2NormalizationDescriptor {
226 dataLayout:DataLayout = NCHW;
227}
228
Aron Virginas-Tar0fe32452019-02-28 13:12:47 +0000229table MinimumLayer {
230 base:LayerBase;
231}
232
Aron Virginas-Tar377351e2019-02-27 14:42:31 +0000233table MaximumLayer {
234 base:LayerBase;
235}
236
Sadik Armagan5f450272019-02-12 14:31:45 +0000237table MultiplicationLayer {
238 base:LayerBase;
239}
240
Saoirse Stewart3166c3e2019-02-18 15:24:53 +0000241table Pooling2dLayer {
242 base:LayerBase;
243 descriptor:Pooling2dDescriptor;
244}
245
246enum PoolingAlgorithm : byte {
247 Max = 0,
248 Average = 1,
249 L2 = 2
250}
251
252enum OutputShapeRounding : byte {
253 Floor = 0,
254 Ceiling = 1
255}
256
257enum PaddingMethod : byte {
258 IgnoreValue = 0,
259 Exclude = 1
260}
261
262table Pooling2dDescriptor {
263 poolType:PoolingAlgorithm;
264 padLeft:uint;
265 padRight:uint;
266 padTop:uint;
267 padBottom:uint;
268 poolWidth:uint;
269 poolHeight:uint;
270 strideX:uint;
271 strideY:uint;
272 outputShapeRounding:OutputShapeRounding;
273 paddingMethod:PaddingMethod;
274 dataLayout:DataLayout;
275}
276
Derek Lamberti87acb272019-03-27 16:51:31 +0000277table QuantizeLayer {
278 base:LayerBase;
279}
280
Aron Virginas-Tarfc413c02019-02-13 15:41:52 +0000281table SoftmaxLayer {
282 base:LayerBase;
283 descriptor:SoftmaxDescriptor;
284}
285
286table SoftmaxDescriptor {
287 beta:float;
288}
289
Aron Virginas-Tarc04125f2019-02-19 16:31:08 +0000290table DepthwiseConvolution2dLayer {
291 base:LayerBase;
292 descriptor:DepthwiseConvolution2dDescriptor;
293 weights:ConstTensor;
294 biases:ConstTensor;
295}
296
297table DepthwiseConvolution2dDescriptor {
298 padLeft:uint;
299 padRight:uint;
300 padTop:uint;
301 padBottom:uint;
302 strideX:uint;
303 strideY:uint;
Matthew Benthamacad04e2019-05-13 10:02:45 +0100304 dilationX:uint = 1;
305 dilationY:uint = 1;
Aron Virginas-Tarc04125f2019-02-19 16:31:08 +0000306 biasEnabled:bool = false;
307 dataLayout:DataLayout = NCHW;
308}
309
Nattapat Chaimanowong969eea32019-01-30 13:33:11 +0000310table OutputLayer {
311 base:BindableLayerBase;
312}
313
Saoirse Stewart263829c2019-02-19 15:54:14 +0000314table ReshapeLayer {
315 base:LayerBase;
316 descriptor:ReshapeDescriptor;
317}
318
319table ReshapeDescriptor {
320 targetShape:[uint];
321}
322
Nattapat Chaimanowong30b00202019-02-20 17:31:34 +0000323table PermuteLayer {
324 base:LayerBase;
325 descriptor:PermuteDescriptor;
326}
327
328table PermuteDescriptor {
329 dimMappings:[uint];
330}
331
Nattapat Chaimanowong45286992019-02-26 15:53:02 +0000332table SpaceToBatchNdLayer {
333 base:LayerBase;
334 descriptor:SpaceToBatchNdDescriptor;
335}
336
337table SpaceToBatchNdDescriptor {
338 blockShape:[uint];
339 padList:[uint];
340 dataLayout:DataLayout;
341}
342
Aron Virginas-Taraa067142019-06-11 16:01:44 +0100343table SpaceToDepthLayer {
344 base:LayerBase;
345 descriptor:SpaceToDepthDescriptor;
346}
347
348table SpaceToDepthDescriptor {
349 blockSize:uint;
350 dataLayout:DataLayout;
351}
352
Conor Kennedyda1f9752019-03-01 14:37:12 +0000353table SubtractionLayer {
354 base:LayerBase;
355}
356
Nattapat Chaimanowong6b4ed982019-02-26 17:24:13 +0000357table BatchToSpaceNdLayer {
358 base:LayerBase;
359 descriptor:BatchToSpaceNdDescriptor;
360}
361
362table BatchToSpaceNdDescriptor {
363 blockShape:[uint];
364 crops:[uint];
365 dataLayout:DataLayout;
366}
367
Nina Drozd57728782019-02-27 10:53:27 +0000368enum NormalizationAlgorithmChannel : byte {
369 Across = 0,
370 Within = 1
371}
372
373enum NormalizationAlgorithmMethod : byte {
374 LocalBrightness = 0,
375 LocalContrast = 1
376}
377
378table NormalizationLayer {
379 base:LayerBase;
380 descriptor:NormalizationDescriptor;
381}
382
383table NormalizationDescriptor {
384 normChannelType:NormalizationAlgorithmChannel = Across;
385 normMethodType:NormalizationAlgorithmMethod = LocalBrightness;
386 normSize:uint;
387 alpha:float;
388 beta:float;
389 k:float;
390 dataLayout:DataLayout = NCHW;
391}
392
Sadik Armaganac97c8c2019-03-04 17:44:21 +0000393table MeanLayer {
394 base:LayerBase;
395 descriptor:MeanDescriptor;
396}
397
398table MeanDescriptor {
399 axis:[uint];
400 keepDims:bool = false;
401}
402
Nattapat Chaimanowongebb0f9c2019-03-01 12:14:06 +0000403table PadLayer {
404 base:LayerBase;
405 descriptor:PadDescriptor;
406}
407
408table PadDescriptor {
409 padList:[uint];
410}
411
Sadik Armagan8b42a382019-03-01 14:24:49 +0000412table RsqrtLayer {
413 base:LayerBase;
414}
415
ruoyan018e7fa232019-02-28 15:09:07 +0000416table BatchNormalizationLayer {
417 base:LayerBase;
418 descriptor:BatchNormalizationDescriptor;
419 mean:ConstTensor;
420 variance:ConstTensor;
421 beta:ConstTensor;
422 gamma:ConstTensor;
423}
424
425table BatchNormalizationDescriptor {
426 eps:float;
427 dataLayout:DataLayout;
428}
429
Nattapat Chaimanowong6522cdc2019-03-01 16:14:13 +0000430table ResizeBilinearLayer {
431 base:LayerBase;
432 descriptor:ResizeBilinearDescriptor;
433}
434
435table ResizeBilinearDescriptor {
436 targetWidth:uint;
437 targetHeight:uint;
438 dataLayout:DataLayout;
439}
440
Nattapat Chaimanowongb3485212019-03-04 12:35:39 +0000441table StridedSliceLayer {
442 base:LayerBase;
443 descriptor:StridedSliceDescriptor;
444}
445
446table StridedSliceDescriptor {
447 begin:[int];
448 end:[int];
449 stride:[int];
450 beginMask:int;
451 endMask:int;
452 shrinkAxisMask:int;
453 ellipsisMask:int;
454 newAxisMask:int;
455 dataLayout:DataLayout;
456}
457
Jim Flynne242f2d2019-05-22 14:24:13 +0100458table ConcatLayer {
459 base:LayerBase;
460 descriptor:OriginsDescriptor;
461}
462
Jim Flynnac25a1b2019-02-28 10:40:49 +0000463table MergerLayer {
464 base:LayerBase;
465 descriptor:OriginsDescriptor;
466}
467
468table UintVector {
469 data:[uint];
470}
471
472table OriginsDescriptor {
473 concatAxis:uint;
474 numViews:uint;
475 numDimensions:uint;
476 viewOrigins:[UintVector];
477}
478
Jim Flynn18ce3382019-03-08 11:08:30 +0000479table ViewsDescriptor {
480 origins:OriginsDescriptor;
481 viewSizes:[UintVector];
482}
483
484table SplitterLayer {
485 base:LayerBase;
486 descriptor:ViewsDescriptor;
487}
488
Nattapat Chaimanowong3e14a9d2019-03-18 12:37:06 +0000489table DetectionPostProcessLayer {
490 base:LayerBase;
491 descriptor:DetectionPostProcessDescriptor;
492 anchors:ConstTensor;
493}
494
495table DetectionPostProcessDescriptor {
496 maxDetections:uint;
497 maxClassesPerDetection:uint;
498 detectionsPerClass:uint;
499 nmsScoreThreshold:float;
500 nmsIouThreshold:float;
501 numClasses:uint;
502 useRegularNms:bool;
503 scaleX:float;
504 scaleY:float;
505 scaleW:float;
506 scaleH:float;
507}
508
Jim Flynn11af3752019-03-19 17:22:29 +0000509table LstmInputParams {
510 inputToForgetWeights:ConstTensor;
511 inputToCellWeights:ConstTensor;
512 inputToOutputWeights:ConstTensor;
513 recurrentToForgetWeights:ConstTensor;
514 recurrentToCellWeights:ConstTensor;
515 recurrentToOutputWeights:ConstTensor;
516 forgetGateBias:ConstTensor;
517 cellBias:ConstTensor;
518 outputGateBias:ConstTensor;
519
520 inputToInputWeights:ConstTensor;
521 recurrentToInputWeights:ConstTensor;
522 cellToInputWeights:ConstTensor;
523 inputGateBias:ConstTensor;
524
525 projectionWeights:ConstTensor;
526 projectionBias:ConstTensor;
527
528 cellToForgetWeights:ConstTensor;
529 cellToOutputWeights:ConstTensor;
530}
531
532table LstmDescriptor {
533 activationFunc:uint;
534 clippingThresCell:float;
535 clippingThresProj:float;
536 cifgEnabled:bool = true;
537 peepholeEnabled:bool = false;
538 projectionEnabled:bool = false;
539}
540
541table LstmLayer {
542 base:LayerBase;
543 descriptor:LstmDescriptor;
544 inputParams:LstmInputParams;
545}
546
Nattapat Chaimanowonge4294fd2019-03-28 09:56:53 +0000547table DequantizeLayer {
548 base:LayerBase;
549}
550
Nattapat Chaimanowong1f886302019-04-05 13:37:19 +0100551table MergeLayer {
552 base:LayerBase;
553}
554
Sadik Armaganeff363d2019-04-05 15:25:46 +0100555table SwitchLayer {
556 base:LayerBase;
557}
558
Ellen Norris-Thompson51982472019-06-19 11:46:21 +0100559table PreluLayer {
560 base:LayerBase;
561}
562
Nattapat Chaimanowong969eea32019-01-30 13:33:11 +0000563union Layer {
Mike Kellyaf484012019-02-20 16:53:11 +0000564 ActivationLayer,
Nattapat Chaimanowong969eea32019-01-30 13:33:11 +0000565 AdditionLayer,
Nattapat Chaimanowong6b4ed982019-02-26 17:24:13 +0000566 BatchToSpaceNdLayer,
ruoyan018e7fa232019-02-28 15:09:07 +0000567 BatchNormalizationLayer,
Conor Kennedy76277882019-02-26 08:29:54 +0000568 ConstantLayer,
Mike Kellya0766c32019-02-19 17:22:07 +0000569 Convolution2dLayer,
Aron Virginas-Tarc04125f2019-02-19 16:31:08 +0000570 DepthwiseConvolution2dLayer,
Sadik Armagandbb0c0c2019-02-21 09:01:41 +0000571 FullyConnectedLayer,
Nattapat Chaimanowong969eea32019-01-30 13:33:11 +0000572 InputLayer,
Sadik Armagan5f450272019-02-12 14:31:45 +0000573 MultiplicationLayer,
Aron Virginas-Tarfc413c02019-02-13 15:41:52 +0000574 OutputLayer,
Nattapat Chaimanowong30b00202019-02-20 17:31:34 +0000575 PermuteLayer,
Saoirse Stewart3166c3e2019-02-18 15:24:53 +0000576 Pooling2dLayer,
Saoirse Stewart263829c2019-02-19 15:54:14 +0000577 ReshapeLayer,
Nattapat Chaimanowong45286992019-02-26 15:53:02 +0000578 SoftmaxLayer,
Éanna Ó Catháin58885892019-02-27 16:16:39 +0000579 SpaceToBatchNdLayer,
Aron Virginas-Tar0fe32452019-02-28 13:12:47 +0000580 DivisionLayer,
Nattapat Chaimanowong235cea52019-02-28 16:27:30 +0000581 MinimumLayer,
Aron Virginas-Tar377351e2019-02-27 14:42:31 +0000582 EqualLayer,
Nina Drozd57728782019-02-27 10:53:27 +0000583 MaximumLayer,
Nattapat Chaimanowongebb0f9c2019-03-01 12:14:06 +0000584 NormalizationLayer,
Sadik Armagan8b42a382019-03-01 14:24:49 +0000585 PadLayer,
Finn Williamsdd2ba7e2019-03-01 11:51:52 +0000586 RsqrtLayer,
Conor Kennedy79ffdf52019-03-01 14:24:54 +0000587 FloorLayer,
Nattapat Chaimanowong6522cdc2019-03-01 16:14:13 +0000588 GreaterLayer,
Conor Kennedyda1f9752019-03-01 14:37:12 +0000589 ResizeBilinearLayer,
Nattapat Chaimanowongb3485212019-03-04 12:35:39 +0000590 SubtractionLayer,
Saoirse Stewarta1ed73a2019-03-04 13:40:12 +0000591 StridedSliceLayer,
Sadik Armaganac97c8c2019-03-04 17:44:21 +0000592 GatherLayer,
Jim Flynnac25a1b2019-02-28 10:40:49 +0000593 MeanLayer,
Narumol Prangnawarat495701f2019-03-07 17:31:34 +0000594 MergerLayer,
Jim Flynn18ce3382019-03-08 11:08:30 +0000595 L2NormalizationLayer,
Nattapat Chaimanowong3e14a9d2019-03-18 12:37:06 +0000596 SplitterLayer,
Jim Flynn11af3752019-03-19 17:22:29 +0000597 DetectionPostProcessLayer,
Derek Lamberti87acb272019-03-27 16:51:31 +0000598 LstmLayer,
Nattapat Chaimanowonge4294fd2019-03-28 09:56:53 +0000599 QuantizeLayer,
Nattapat Chaimanowong1f886302019-04-05 13:37:19 +0100600 DequantizeLayer,
Sadik Armaganeff363d2019-04-05 15:25:46 +0100601 MergeLayer,
Jim Flynne242f2d2019-05-22 14:24:13 +0100602 SwitchLayer,
Aron Virginas-Taraa067142019-06-11 16:01:44 +0100603 ConcatLayer,
Ellen Norris-Thompson51982472019-06-19 11:46:21 +0100604 SpaceToDepthLayer,
605 PreluLayer
Nattapat Chaimanowong969eea32019-01-30 13:33:11 +0000606}
607
Saoirse Stewart49dbe0e2019-02-05 17:27:06 +0000608table AnyLayer {
609 layer:Layer;
610}
611
Nattapat Chaimanowong969eea32019-01-30 13:33:11 +0000612// Root type for serialized data is the graph of the network
613table SerializedGraph {
Saoirse Stewart49dbe0e2019-02-05 17:27:06 +0000614 layers:[AnyLayer];
Mike Kelly8c1701a2019-02-11 17:01:27 +0000615 inputIds:[uint];
616 outputIds:[uint];
Nattapat Chaimanowong969eea32019-01-30 13:33:11 +0000617}
618
619root_type SerializedGraph;