blob: 40a386a00c9de6d9975d99a95047e101d063921f [file] [log] [blame]
Tim Hall79d07d22020-04-27 18:20:16 +01001# automatically generated by the FlatBuffers compiler, do not modify
2
3# namespace: tflite
4
5import flatbuffers
erik.andersson@arm.com61f05d92022-09-27 12:06:32 +02006from flatbuffers.compat import import_numpy
7np = import_numpy()
Tim Hall79d07d22020-04-27 18:20:16 +01008
9class WhileOptions(object):
10 __slots__ = ['_tab']
11
12 @classmethod
erik.andersson@arm.com61f05d92022-09-27 12:06:32 +020013 def GetRootAs(cls, buf, offset=0):
Tim Hall79d07d22020-04-27 18:20:16 +010014 n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
15 x = WhileOptions()
16 x.Init(buf, n + offset)
17 return x
18
erik.andersson@arm.com61f05d92022-09-27 12:06:32 +020019 @classmethod
20 def GetRootAsWhileOptions(cls, buf, offset=0):
21 """This method is deprecated. Please switch to GetRootAs."""
22 return cls.GetRootAs(buf, offset)
23 @classmethod
24 def WhileOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
25 return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
26
Tim Hall79d07d22020-04-27 18:20:16 +010027 # WhileOptions
28 def Init(self, buf, pos):
29 self._tab = flatbuffers.table.Table(buf, pos)
30
31 # WhileOptions
32 def CondSubgraphIndex(self):
33 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
34 if o != 0:
35 return self._tab.Get(flatbuffers.number_types.Int32Flags, o + self._tab.Pos)
36 return 0
37
38 # WhileOptions
39 def BodySubgraphIndex(self):
40 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
41 if o != 0:
42 return self._tab.Get(flatbuffers.number_types.Int32Flags, o + self._tab.Pos)
43 return 0
44
erik.andersson@arm.comdd49a722022-08-10 15:26:48 +020045def WhileOptionsStart(builder): builder.StartObject(2)
erik.andersson@arm.com61f05d92022-09-27 12:06:32 +020046def Start(builder):
47 return WhileOptionsStart(builder)
erik.andersson@arm.comdd49a722022-08-10 15:26:48 +020048def WhileOptionsAddCondSubgraphIndex(builder, condSubgraphIndex): builder.PrependInt32Slot(0, condSubgraphIndex, 0)
erik.andersson@arm.com61f05d92022-09-27 12:06:32 +020049def AddCondSubgraphIndex(builder, condSubgraphIndex):
50 return WhileOptionsAddCondSubgraphIndex(builder, condSubgraphIndex)
erik.andersson@arm.comdd49a722022-08-10 15:26:48 +020051def WhileOptionsAddBodySubgraphIndex(builder, bodySubgraphIndex): builder.PrependInt32Slot(1, bodySubgraphIndex, 0)
erik.andersson@arm.com61f05d92022-09-27 12:06:32 +020052def AddBodySubgraphIndex(builder, bodySubgraphIndex):
53 return WhileOptionsAddBodySubgraphIndex(builder, bodySubgraphIndex)
erik.andersson@arm.comdd49a722022-08-10 15:26:48 +020054def WhileOptionsEnd(builder): return builder.EndObject()
erik.andersson@arm.com61f05d92022-09-27 12:06:32 +020055def End(builder):
56 return WhileOptionsEnd(builder)