blob: bdc56b2fa8fac63d29d12c0c8093ed431bf96cef [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
Johan Alfvéna9fba262022-07-19 12:26:32 +02006from flatbuffers.compat import import_numpy
7np = import_numpy()
Tim Hall79d07d22020-04-27 18:20:16 +01008
9class IfOptions(object):
10 __slots__ = ['_tab']
11
12 @classmethod
Johan Alfvéna9fba262022-07-19 12:26: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 = IfOptions()
16 x.Init(buf, n + offset)
17 return x
18
Johan Alfvéna9fba262022-07-19 12:26:32 +020019 @classmethod
20 def GetRootAsIfOptions(cls, buf, offset=0):
21 """This method is deprecated. Please switch to GetRootAs."""
22 return cls.GetRootAs(buf, offset)
23 @classmethod
24 def IfOptionsBufferHasIdentifier(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 # IfOptions
28 def Init(self, buf, pos):
29 self._tab = flatbuffers.table.Table(buf, pos)
30
31 # IfOptions
32 def ThenSubgraphIndex(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 # IfOptions
39 def ElseSubgraphIndex(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
Johan Alfvéna9fba262022-07-19 12:26:32 +020045def Start(builder): builder.StartObject(2)
46def IfOptionsStart(builder):
47 """This method is deprecated. Please switch to Start."""
48 return Start(builder)
49def AddThenSubgraphIndex(builder, thenSubgraphIndex): builder.PrependInt32Slot(0, thenSubgraphIndex, 0)
50def IfOptionsAddThenSubgraphIndex(builder, thenSubgraphIndex):
51 """This method is deprecated. Please switch to AddThenSubgraphIndex."""
52 return AddThenSubgraphIndex(builder, thenSubgraphIndex)
53def AddElseSubgraphIndex(builder, elseSubgraphIndex): builder.PrependInt32Slot(1, elseSubgraphIndex, 0)
54def IfOptionsAddElseSubgraphIndex(builder, elseSubgraphIndex):
55 """This method is deprecated. Please switch to AddElseSubgraphIndex."""
56 return AddElseSubgraphIndex(builder, elseSubgraphIndex)
57def End(builder): return builder.EndObject()
58def IfOptionsEnd(builder):
59 """This method is deprecated. Please switch to End."""
60 return End(builder)