aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/supported_operators.py
diff options
context:
space:
mode:
authorpatrik.gustavsson <patrik.gustavsson@arm.com>2020-10-14 10:57:46 +0000
committerpatrik.gustavsson <patrik.gustavsson@arm.com>2020-10-14 10:57:46 +0000
commit1068362a83dd15613561189c00e364cddfd3071d (patch)
tree05d09cdc84c2da6e8a5e9b33e15e3deda1a61219 /ethosu/vela/supported_operators.py
parent04986c0016e59993563490fe67052371fc0e1ad2 (diff)
downloadethos-u-vela-1068362a83dd15613561189c00e364cddfd3071d.tar.gz
Revert "MLBEDSW-3219: Suppress CPU info for Const/Placeholder"
This reverts commit 04986c0016e59993563490fe67052371fc0e1ad2. Reason for revert: Merged by mistake Change-Id: I150ad9ba7074ad1e80f21180aeba56a454d9f748
Diffstat (limited to 'ethosu/vela/supported_operators.py')
-rw-r--r--ethosu/vela/supported_operators.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/ethosu/vela/supported_operators.py b/ethosu/vela/supported_operators.py
index 18496c54..4e989124 100644
--- a/ethosu/vela/supported_operators.py
+++ b/ethosu/vela/supported_operators.py
@@ -137,8 +137,7 @@ class SupportedOperators:
def is_operator_supported(self, op):
if op.type not in SupportedOperators.supported_operators:
- if not op.type.is_startup_init_op():
- print('Info: "{}" is not supported on the NPU. Placing on CPU instead'.format(op.type))
+ print('Info: "{}" is not supported on the NPU. Placing on CPU instead'.format(op.type))
return False
for constraint in self.generic_constraints:
valid, extra = constraint(op)