blob: 25c0c281adcdd4f1b25d8989bbb1504e51d2b95b [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
erik.andersson@arm.com61f05d92022-09-27 12:06:32 +02006from flatbuffers.compat import import_numpy
7np = import_numpy()
Tim Hall79d07d22020-04-27 18:20:16 +01008
9class BidirectionalSequenceLSTMOptions(object):
10 __slots__ = ['_tab']
11
12 @classmethod
erik.andersson@arm.com61f05d92022-09-27 12:06:32 +020013 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 = BidirectionalSequenceLSTMOptions()
16 x.Init(buf, n + offset)
17 return x
18
erik.andersson@arm.com61f05d92022-09-27 12:06:32 +020019 @classmethod
20 def GetRootAsBidirectionalSequenceLSTMOptions(cls, buf, offset=0):
21 """This method is deprecated. Please switch to GetRootAs."""
22 return cls.GetRootAs(buf, offset)
23 @classmethod
24 def BidirectionalSequenceLSTMOptionsBufferHasIdentifier(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 # BidirectionalSequenceLSTMOptions
28 def Init(self, buf, pos):
29 self._tab = flatbuffers.table.Table(buf, pos)
30
31 # BidirectionalSequenceLSTMOptions
32 def FusedActivationFunction(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.Int8Flags, o + self._tab.Pos)
36 return 0
37
38 # BidirectionalSequenceLSTMOptions
39 def CellClip(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.Float32Flags, o + self._tab.Pos)
43 return 0.0
44
45 # BidirectionalSequenceLSTMOptions
46 def ProjClip(self):
47 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(8))
48 if o != 0:
49 return self._tab.Get(flatbuffers.number_types.Float32Flags, o + self._tab.Pos)
50 return 0.0
51
52 # BidirectionalSequenceLSTMOptions
53 def MergeOutputs(self):
54 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(10))
55 if o != 0:
56 return bool(self._tab.Get(flatbuffers.number_types.BoolFlags, o + self._tab.Pos))
57 return False
58
59 # BidirectionalSequenceLSTMOptions
60 def TimeMajor(self):
61 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(12))
62 if o != 0:
63 return bool(self._tab.Get(flatbuffers.number_types.BoolFlags, o + self._tab.Pos))
64 return True
65
Jacob Bohlin8daf6b72020-09-15 16:28:35 +020066 # BidirectionalSequenceLSTMOptions
67 def AsymmetricQuantizeInputs(self):
68 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(14))
69 if o != 0:
70 return bool(self._tab.Get(flatbuffers.number_types.BoolFlags, o + self._tab.Pos))
71 return False
72
erik.andersson@arm.comdd49a722022-08-10 15:26:48 +020073def BidirectionalSequenceLSTMOptionsStart(builder): builder.StartObject(6)
erik.andersson@arm.com61f05d92022-09-27 12:06:32 +020074def Start(builder):
75 return BidirectionalSequenceLSTMOptionsStart(builder)
erik.andersson@arm.comdd49a722022-08-10 15:26:48 +020076def BidirectionalSequenceLSTMOptionsAddFusedActivationFunction(builder, fusedActivationFunction): builder.PrependInt8Slot(0, fusedActivationFunction, 0)
erik.andersson@arm.com61f05d92022-09-27 12:06:32 +020077def AddFusedActivationFunction(builder, fusedActivationFunction):
78 return BidirectionalSequenceLSTMOptionsAddFusedActivationFunction(builder, fusedActivationFunction)
erik.andersson@arm.comdd49a722022-08-10 15:26:48 +020079def BidirectionalSequenceLSTMOptionsAddCellClip(builder, cellClip): builder.PrependFloat32Slot(1, cellClip, 0.0)
erik.andersson@arm.com61f05d92022-09-27 12:06:32 +020080def AddCellClip(builder, cellClip):
81 return BidirectionalSequenceLSTMOptionsAddCellClip(builder, cellClip)
erik.andersson@arm.comdd49a722022-08-10 15:26:48 +020082def BidirectionalSequenceLSTMOptionsAddProjClip(builder, projClip): builder.PrependFloat32Slot(2, projClip, 0.0)
erik.andersson@arm.com61f05d92022-09-27 12:06:32 +020083def AddProjClip(builder, projClip):
84 return BidirectionalSequenceLSTMOptionsAddProjClip(builder, projClip)
erik.andersson@arm.comdd49a722022-08-10 15:26:48 +020085def BidirectionalSequenceLSTMOptionsAddMergeOutputs(builder, mergeOutputs): builder.PrependBoolSlot(3, mergeOutputs, 0)
erik.andersson@arm.com61f05d92022-09-27 12:06:32 +020086def AddMergeOutputs(builder, mergeOutputs):
87 return BidirectionalSequenceLSTMOptionsAddMergeOutputs(builder, mergeOutputs)
erik.andersson@arm.comdd49a722022-08-10 15:26:48 +020088def BidirectionalSequenceLSTMOptionsAddTimeMajor(builder, timeMajor): builder.PrependBoolSlot(4, timeMajor, 1)
erik.andersson@arm.com61f05d92022-09-27 12:06:32 +020089def AddTimeMajor(builder, timeMajor):
90 return BidirectionalSequenceLSTMOptionsAddTimeMajor(builder, timeMajor)
erik.andersson@arm.comdd49a722022-08-10 15:26:48 +020091def BidirectionalSequenceLSTMOptionsAddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs): builder.PrependBoolSlot(5, asymmetricQuantizeInputs, 0)
erik.andersson@arm.com61f05d92022-09-27 12:06:32 +020092def AddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs):
93 return BidirectionalSequenceLSTMOptionsAddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs)
erik.andersson@arm.comdd49a722022-08-10 15:26:48 +020094def BidirectionalSequenceLSTMOptionsEnd(builder): return builder.EndObject()
erik.andersson@arm.com61f05d92022-09-27 12:06:32 +020095def End(builder):
96 return BidirectionalSequenceLSTMOptionsEnd(builder)