blob: 636ba1cbedae292bb4ebdb9fc47a647a7929daea [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
Dwight Lidman8a12da12021-07-19 13:43:05 +02006from flatbuffers.compat import import_numpy
7np = import_numpy()
Tim Hall79d07d22020-04-27 18:20:16 +01008
9class SequenceRNNOptions(object):
10 __slots__ = ['_tab']
11
12 @classmethod
13 def GetRootAsSequenceRNNOptions(cls, buf, offset):
14 n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
15 x = SequenceRNNOptions()
16 x.Init(buf, n + offset)
17 return x
18
Dwight Lidman8a12da12021-07-19 13:43:05 +020019 @classmethod
20 def SequenceRNNOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
21 return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
22
Tim Hall79d07d22020-04-27 18:20:16 +010023 # SequenceRNNOptions
24 def Init(self, buf, pos):
25 self._tab = flatbuffers.table.Table(buf, pos)
26
27 # SequenceRNNOptions
28 def TimeMajor(self):
29 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
30 if o != 0:
31 return bool(self._tab.Get(flatbuffers.number_types.BoolFlags, o + self._tab.Pos))
32 return False
33
34 # SequenceRNNOptions
35 def FusedActivationFunction(self):
36 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
37 if o != 0:
38 return self._tab.Get(flatbuffers.number_types.Int8Flags, o + self._tab.Pos)
39 return 0
40
Jacob Bohlin8daf6b72020-09-15 16:28:35 +020041 # SequenceRNNOptions
42 def AsymmetricQuantizeInputs(self):
43 o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(8))
44 if o != 0:
45 return bool(self._tab.Get(flatbuffers.number_types.BoolFlags, o + self._tab.Pos))
46 return False
47
48def SequenceRNNOptionsStart(builder): builder.StartObject(3)
Tim Hall79d07d22020-04-27 18:20:16 +010049def SequenceRNNOptionsAddTimeMajor(builder, timeMajor): builder.PrependBoolSlot(0, timeMajor, 0)
50def SequenceRNNOptionsAddFusedActivationFunction(builder, fusedActivationFunction): builder.PrependInt8Slot(1, fusedActivationFunction, 0)
Jacob Bohlin8daf6b72020-09-15 16:28:35 +020051def SequenceRNNOptionsAddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs): builder.PrependBoolSlot(2, asymmetricQuantizeInputs, 0)
Tim Hall79d07d22020-04-27 18:20:16 +010052def SequenceRNNOptionsEnd(builder): return builder.EndObject()