blob: aad72769858ada169f5b11484a67e16e4d9d16c7 [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
6
7class IfOptions(object):
8 __slots__ = ['_tab']
9
10 @classmethod
11 def GetRootAsIfOptions(cls, buf, offset):
12 n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
13 x = IfOptions()
14 x.Init(buf, n + offset)
15 return x
16
Dwight Lidman8a12da12021-07-19 13:43:05 +020017 @classmethod
18 def IfOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
19 return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
20
Tim Hall79d07d22020-04-27 18:20:16 +010021 # IfOptions
22 def Init(self, buf, pos):
23 self._tab = flatbuffers.table.Table(buf, pos)
24
25 # IfOptions
26 def ThenSubgraphIndex(self):
27 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
28 if o != 0:
29 return self._tab.Get(flatbuffers.number_types.Int32Flags, o + self._tab.Pos)
30 return 0
31
32 # IfOptions
33 def ElseSubgraphIndex(self):
34 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
35 if o != 0:
36 return self._tab.Get(flatbuffers.number_types.Int32Flags, o + self._tab.Pos)
37 return 0
38
39def IfOptionsStart(builder): builder.StartObject(2)
40def IfOptionsAddThenSubgraphIndex(builder, thenSubgraphIndex): builder.PrependInt32Slot(0, thenSubgraphIndex, 0)
41def IfOptionsAddElseSubgraphIndex(builder, elseSubgraphIndex): builder.PrependInt32Slot(1, elseSubgraphIndex, 0)
42def IfOptionsEnd(builder): return builder.EndObject()