aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/tflite_writer.py
diff options
context:
space:
mode:
authorTim Hall <tim.hall@arm.com>2021-06-24 18:29:53 +0100
committerTim Hall <tim.hall@arm.com>2021-07-09 11:51:22 +0100
commitffe8e288c8321dfc55a3b75f1aedc08769ecb23a (patch)
tree7445c018851422a5c1b08f1ae5d7f5529fa461aa /ethosu/vela/tflite_writer.py
parent5e26eda0e0f359b6e22b1f1eeb9344cd15e0f093 (diff)
downloadethos-u-vela-ffe8e288c8321dfc55a3b75f1aedc08769ecb23a.tar.gz
MLBEDSW-4839: Fix issues with Elementwise IFM/OFM overlap
- Fixed typo with not using ifm.mem_type - Fixed bug with using ifm1 properties when only ifm2 is a potential match - Removed restriction on not considering SHL and SHR for overlap - Removed some dead reshape code Signed-off-by: Tim Hall <tim.hall@arm.com> Change-Id: Id9bcc3c2b3ee9ac7b6276187d3e2f513b4acd4b5
Diffstat (limited to 'ethosu/vela/tflite_writer.py')
-rw-r--r--ethosu/vela/tflite_writer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethosu/vela/tflite_writer.py b/ethosu/vela/tflite_writer.py
index 3701893e..fd3bf421 100644
--- a/ethosu/vela/tflite_writer.py
+++ b/ethosu/vela/tflite_writer.py
@@ -39,7 +39,7 @@ from .tflite_mapping import builtin_operator_inv_map
from .tflite_mapping import BuiltinOperator
from .tflite_mapping import datatype_inv_map
-# ugh, the python flatbuffer interface is missing a method to add in file identifier. patching it in here:
+# the python flatbuffer interface is missing a method to add in file identifier. patching it in here:
tflite_version = 3
tflite_file_identifier = "TFL" + str(tflite_version)