mirror of https://github.com/alibaba/MNN.git
31 lines
885 B
Python
31 lines
885 B
Python
# automatically generated by the FlatBuffers compiler, do not modify
|
|
|
|
# namespace: MNN
|
|
|
|
import flatbuffers
|
|
|
|
class PadParam(object):
|
|
__slots__ = ['_tab']
|
|
|
|
@classmethod
|
|
def GetRootAsPadParam(cls, buf, offset):
|
|
n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
|
|
x = PadParam()
|
|
x.Init(buf, n + offset)
|
|
return x
|
|
|
|
# PadParam
|
|
def Init(self, buf, pos):
|
|
self._tab = flatbuffers.table.Table(buf, pos)
|
|
|
|
# PadParam
|
|
def Mode(self):
|
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
|
|
if o != 0:
|
|
return self._tab.Get(flatbuffers.number_types.Int8Flags, o + self._tab.Pos)
|
|
return 0
|
|
|
|
def PadParamStart(builder): builder.StartObject(1)
|
|
def PadParamAddMode(builder, mode): builder.PrependInt8Slot(0, mode, 0)
|
|
def PadParamEnd(builder): return builder.EndObject()
|