blob: 5016a24e4a74f7ec5597b563905f83ac366878ce [file] [log] [blame]
Tim Hall79d07d22020-04-27 18:20:16 +01001# automatically generated by the FlatBuffers compiler, do not modify
2
3# namespace: tflite
4
5import flatbuffers
Rickard Bolin2de898a2021-12-20 08:35:23 +00006from flatbuffers.compat import import_numpy
7np = import_numpy()
Tim Hall79d07d22020-04-27 18:20:16 +01008
9class ConcatenationOptions(object):
10 __slots__ = ['_tab']
11
12 @classmethod
Rickard Bolin2de898a2021-12-20 08:35:23 +000013 def GetRootAs(cls, buf, offset=0):
Tim Hall79d07d22020-04-27 18:20:16 +010014 n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
15 x = ConcatenationOptions()
16 x.Init(buf, n + offset)
17 return x
18
Dwight Lidman8a12da12021-07-19 13:43:05 +020019 @classmethod
Rickard Bolin2de898a2021-12-20 08:35:23 +000020 def GetRootAsConcatenationOptions(cls, buf, offset=0):
21 """This method is deprecated. Please switch to GetRootAs."""
22 return cls.GetRootAs(buf, offset)
23 @classmethod
Dwight Lidman8a12da12021-07-19 13:43:05 +020024 def ConcatenationOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
25 return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
26
Tim Hall79d07d22020-04-27 18:20:16 +010027 # ConcatenationOptions
28 def Init(self, buf, pos):
29 self._tab = flatbuffers.table.Table(buf, pos)
30
31 # ConcatenationOptions
32 def Axis(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
38 # ConcatenationOptions
39 def FusedActivationFunction(self):
40 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
41 if o != 0:
42 return self._tab.Get(flatbuffers.number_types.Int8Flags, o + self._tab.Pos)
43 return 0
44
45def ConcatenationOptionsStart(builder): builder.StartObject(2)
Rickard Bolin2de898a2021-12-20 08:35:23 +000046def Start(builder):
47 return ConcatenationOptionsStart(builder)
Tim Hall79d07d22020-04-27 18:20:16 +010048def ConcatenationOptionsAddAxis(builder, axis): builder.PrependInt32Slot(0, axis, 0)
Rickard Bolin2de898a2021-12-20 08:35:23 +000049def AddAxis(builder, axis):
50 return ConcatenationOptionsAddAxis(builder, axis)
Tim Hall79d07d22020-04-27 18:20:16 +010051def ConcatenationOptionsAddFusedActivationFunction(builder, fusedActivationFunction): builder.PrependInt8Slot(1, fusedActivationFunction, 0)
Rickard Bolin2de898a2021-12-20 08:35:23 +000052def AddFusedActivationFunction(builder, fusedActivationFunction):
53 return ConcatenationOptionsAddFusedActivationFunction(builder, fusedActivationFunction)
Tim Hall79d07d22020-04-27 18:20:16 +010054def ConcatenationOptionsEnd(builder): return builder.EndObject()
Rickard Bolin2de898a2021-12-20 08:35:23 +000055def End(builder):
56 return ConcatenationOptionsEnd(builder)