blob: 093dad7b9805cddf80b09ab64def53abc4852164 [file] [log] [blame]
William Isakssonf0cb1ab2023-09-11 13:00:30 +00001# automatically generated by the FlatBuffers compiler, do not modify
2
3# namespace: tflite
4
5import flatbuffers
6from flatbuffers.compat import import_numpy
7np = import_numpy()
8
9class BitcastOptions(object):
10 __slots__ = ['_tab']
11
12 @classmethod
13 def GetRootAs(cls, buf, offset=0):
14 n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
15 x = BitcastOptions()
16 x.Init(buf, n + offset)
17 return x
18
19 @classmethod
20 def GetRootAsBitcastOptions(cls, buf, offset=0):
21 """This method is deprecated. Please switch to GetRootAs."""
22 return cls.GetRootAs(buf, offset)
23 @classmethod
24 def BitcastOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
25 return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
26
27 # BitcastOptions
28 def Init(self, buf, pos):
29 self._tab = flatbuffers.table.Table(buf, pos)
30
31def BitcastOptionsStart(builder): builder.StartObject(0)
32def Start(builder):
33 return BitcastOptionsStart(builder)
34def BitcastOptionsEnd(builder): return builder.EndObject()
35def End(builder):
36 return BitcastOptionsEnd(builder)