blob: f347a604bdecb72f7e1b35cabb9628860b7c362e [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 RightShiftOptions(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 = RightShiftOptions()
16 x.Init(buf, n + offset)
17 return x
18
19 @classmethod
20 def GetRootAsRightShiftOptions(cls, buf, offset=0):
21 """This method is deprecated. Please switch to GetRootAs."""
22 return cls.GetRootAs(buf, offset)
23 @classmethod
24 def RightShiftOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
25 return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
26
27 # RightShiftOptions
28 def Init(self, buf, pos):
29 self._tab = flatbuffers.table.Table(buf, pos)
30
31def RightShiftOptionsStart(builder): builder.StartObject(0)
32def Start(builder):
33 return RightShiftOptionsStart(builder)
34def RightShiftOptionsEnd(builder): return builder.EndObject()
35def End(builder):
36 return RightShiftOptionsEnd(builder)