aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/tflite/BatchMatMulOptions.py
diff options
context:
space:
mode:
authorRickard Bolin <rickard.bolin@arm.com>2021-12-20 08:35:23 +0000
committerpatrik.gustavsson <patrik.gustavsson@arm.com>2022-01-21 12:45:02 +0000
commit2de898a85d800f0e812cc13eff6363e27a377cf5 (patch)
tree4c4b81cf5c4c521d33af59234deffce00611ba78 /ethosu/vela/tflite/BatchMatMulOptions.py
parent3c25ff658cf847ccfcb2d4d5796ffbe13a511894 (diff)
downloadethos-u-vela-2de898a85d800f0e812cc13eff6363e27a377cf5.tar.gz
MLBEDSW-4870: Update to TensorFlow 2.7
Update the flatbuffers generated code to comply with TensorFlow 2.7 Signed-off-by: Rickard Bolin <rickard.bolin@arm.com> Change-Id: Iff29b05a6e145245861329b4ff9fc9fbd968da53
Diffstat (limited to 'ethosu/vela/tflite/BatchMatMulOptions.py')
-rw-r--r--ethosu/vela/tflite/BatchMatMulOptions.py18
1 files changed, 17 insertions, 1 deletions
diff --git a/ethosu/vela/tflite/BatchMatMulOptions.py b/ethosu/vela/tflite/BatchMatMulOptions.py
index 771c36e2..061bb0c8 100644
--- a/ethosu/vela/tflite/BatchMatMulOptions.py
+++ b/ethosu/vela/tflite/BatchMatMulOptions.py
@@ -3,18 +3,24 @@
# namespace: tflite
import flatbuffers
+from flatbuffers.compat import import_numpy
+np = import_numpy()
class BatchMatMulOptions(object):
__slots__ = ['_tab']
@classmethod
- def GetRootAsBatchMatMulOptions(cls, buf, offset):
+ def GetRootAs(cls, buf, offset=0):
n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
x = BatchMatMulOptions()
x.Init(buf, n + offset)
return x
@classmethod
+ def GetRootAsBatchMatMulOptions(cls, buf, offset=0):
+ """This method is deprecated. Please switch to GetRootAs."""
+ return cls.GetRootAs(buf, offset)
+ @classmethod
def BatchMatMulOptionsBufferHasIdentifier(cls, buf, offset, size_prefixed=False):
return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x54\x46\x4C\x33", size_prefixed=size_prefixed)
@@ -44,7 +50,17 @@ class BatchMatMulOptions(object):
return False
def BatchMatMulOptionsStart(builder): builder.StartObject(3)
+def Start(builder):
+ return BatchMatMulOptionsStart(builder)
def BatchMatMulOptionsAddAdjX(builder, adjX): builder.PrependBoolSlot(0, adjX, 0)
+def AddAdjX(builder, adjX):
+ return BatchMatMulOptionsAddAdjX(builder, adjX)
def BatchMatMulOptionsAddAdjY(builder, adjY): builder.PrependBoolSlot(1, adjY, 0)
+def AddAdjY(builder, adjY):
+ return BatchMatMulOptionsAddAdjY(builder, adjY)
def BatchMatMulOptionsAddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs): builder.PrependBoolSlot(2, asymmetricQuantizeInputs, 0)
+def AddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs):
+ return BatchMatMulOptionsAddAsymmetricQuantizeInputs(builder, asymmetricQuantizeInputs)
def BatchMatMulOptionsEnd(builder): return builder.EndObject()
+def End(builder):
+ return BatchMatMulOptionsEnd(builder) \ No newline at end of file