blob: da062ec98ca089cd22f4f76649155e3e743a52bb [file] [log] [blame]
Dwight Lidman8a12da12021-07-19 13:43:05 +02001# automatically generated by the FlatBuffers compiler, do not modify
2
3# namespace: tflite
4
5import flatbuffers
6from flatbuffers.compat import import_numpy
7np = import_numpy()
8
9class Rfft2dOptions(object):
10 __slots__ = ['_tab']
11
12 @classmethod
13 def GetRootAsRfft2dOptions(cls, buf, offset):
14 n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
15 x = Rfft2dOptions()
16 x.Init(buf, n + offset)
17 return x
18
19 @classmethod
20 def Rfft2dOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
21 return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
22
23 # Rfft2dOptions
24 def Init(self, buf, pos):
25 self._tab = flatbuffers.table.Table(buf, pos)
26
27def Rfft2dOptionsStart(builder): builder.StartObject(0)
28def Rfft2dOptionsEnd(builder): return builder.EndObject()