Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / tools / tflitefile_tool / tflite / SequenceRNNOptions.py
1 # automatically generated by the FlatBuffers compiler, do not modify
2
3 # namespace: onert_tflite
4
5 import flatbuffers
6
7
8 class SequenceRNNOptions(object):
9     __slots__ = ['_tab']
10
11     @classmethod
12     def GetRootAsSequenceRNNOptions(cls, buf, offset):
13         n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
14         x = SequenceRNNOptions()
15         x.Init(buf, n + offset)
16         return x
17
18     # SequenceRNNOptions
19     def Init(self, buf, pos):
20         self._tab = flatbuffers.table.Table(buf, pos)
21
22     # SequenceRNNOptions
23     def TimeMajor(self):
24         o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
25         if o != 0:
26             return bool(
27                 self._tab.Get(flatbuffers.number_types.BoolFlags, o + self._tab.Pos))
28         return False
29
30     # SequenceRNNOptions
31     def FusedActivationFunction(self):
32         o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
33         if o != 0:
34             return self._tab.Get(flatbuffers.number_types.Int8Flags, o + self._tab.Pos)
35         return 0
36
37     # SequenceRNNOptions
38     def AsymmetricQuantizeInputs(self):
39         o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(8))
40         if o != 0:
41             return bool(
42                 self._tab.Get(flatbuffers.number_types.BoolFlags, o + self._tab.Pos))
43         return False
44
45
46 def SequenceRNNOptionsStart(builder):
47     builder.StartObject(3)
48
49
50 def SequenceRNNOptionsAddTimeMajor(builder, timeMajor):
51     builder.PrependBoolSlot(0, timeMajor, 0)
52
53
54 def SequenceRNNOptionsAddFusedActivationFunction(builder, fusedActivationFunction):
55     builder.PrependInt8Slot(1, fusedActivationFunction, 0)
56
57
58 def SequenceRNNOptionsAddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs):
59     builder.PrependBoolSlot(2, asymmetricQuantizeInputs, 0)
60
61
62 def SequenceRNNOptionsEnd(builder):
63     return builder.EndObject()