blob: 232b55d8cc45212781d33f98c48dd2649090809b [file] [log] [blame]
Rickard Bolind66f8012022-04-21 07:36:55 +00001# 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 DynamicUpdateSliceOptions(object):
10 __slots__ = ['_tab']
11
12 @classmethod
13 def GetRootAs(cls, buf, offset=0):
14 n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
15 x = DynamicUpdateSliceOptions()
16 x.Init(buf, n + offset)
17 return x
18
19 @classmethod
20 def GetRootAsDynamicUpdateSliceOptions(cls, buf, offset=0):
21 """This method is deprecated. Please switch to GetRootAs."""
22 return cls.GetRootAs(buf, offset)
23 @classmethod
24 def DynamicUpdateSliceOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
25 return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
26
27 # DynamicUpdateSliceOptions
28 def Init(self, buf, pos):
29 self._tab = flatbuffers.table.Table(buf, pos)
30
31def Start(builder): builder.StartObject(0)
32def DynamicUpdateSliceOptionsStart(builder):
33 """This method is deprecated. Please switch to Start."""
34 return Start(builder)
35def End(builder): return builder.EndObject()
36def DynamicUpdateSliceOptionsEnd(builder):
37 """This method is deprecated. Please switch to End."""
38 return End(builder)