blob: 825b72c827f847c373d59a78a6c2d1680351de12 [file] [log] [blame]
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +02001# automatically generated by the FlatBuffers compiler, do not modify
2
3# namespace: tosa
4
5import flatbuffers
6
7class PadQuantInfo(object):
8 __slots__ = ['_tab']
9
10 @classmethod
11 def GetRootAsPadQuantInfo(cls, buf, offset):
12 n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
13 x = PadQuantInfo()
14 x.Init(buf, n + offset)
15 return x
16
17 # PadQuantInfo
18 def Init(self, buf, pos):
19 self._tab = flatbuffers.table.Table(buf, pos)
20
21 # PadQuantInfo
22 def InputZp(self):
23 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
24 if o != 0:
25 return self._tab.Get(flatbuffers.number_types.Int32Flags, o + self._tab.Pos)
26 return 0
27
28def PadQuantInfoStart(builder): builder.StartObject(1)
29def PadQuantInfoAddInputZp(builder, inputZp): builder.PrependInt32Slot(0, inputZp, 0)
30def PadQuantInfoEnd(builder): return builder.EndObject()