blob: f43715fa80236ff390585fb302269aa814bf4eed [file] [log] [blame]
Dwight Lidman8a12da12021-07-19 13:43:05 +02001# 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()
Dwight Lidman8a12da12021-07-19 13:43:05 +02008
9class CallOnceOptions(object):
10 __slots__ = ['_tab']
11
12 @classmethod
Johan Alfvéna9fba262022-07-19 12:26:32 +020013 def GetRootAs(cls, buf, offset=0):
Dwight Lidman8a12da12021-07-19 13:43:05 +020014 n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
15 x = CallOnceOptions()
16 x.Init(buf, n + offset)
17 return x
18
Johan Alfvéna9fba262022-07-19 12:26:32 +020019 @classmethod
20 def GetRootAsCallOnceOptions(cls, buf, offset=0):
21 """This method is deprecated. Please switch to GetRootAs."""
22 return cls.GetRootAs(buf, offset)
23 @classmethod
24 def CallOnceOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
25 return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
26
Dwight Lidman8a12da12021-07-19 13:43:05 +020027 # CallOnceOptions
28 def Init(self, buf, pos):
29 self._tab = flatbuffers.table.Table(buf, pos)
30
31 # CallOnceOptions
32 def InitSubgraphIndex(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
Johan Alfvéna9fba262022-07-19 12:26:32 +020038def Start(builder): builder.StartObject(1)
39def CallOnceOptionsStart(builder):
40 """This method is deprecated. Please switch to Start."""
41 return Start(builder)
42def AddInitSubgraphIndex(builder, initSubgraphIndex): builder.PrependInt32Slot(0, initSubgraphIndex, 0)
43def CallOnceOptionsAddInitSubgraphIndex(builder, initSubgraphIndex):
44 """This method is deprecated. Please switch to AddInitSubgraphIndex."""
45 return AddInitSubgraphIndex(builder, initSubgraphIndex)
46def End(builder): return builder.EndObject()
47def CallOnceOptionsEnd(builder):
48 """This method is deprecated. Please switch to End."""
49 return End(builder)