aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/driver_actions.py
diff options
context:
space:
mode:
authorTim Hall <tim.hall@arm.com>2023-06-27 12:07:49 +0100
committerTim Hall <tim.hall@arm.com>2023-07-12 11:31:33 +0100
commit9cf63a3612491198a39f6bd1f4a587589b3ac20a (patch)
tree336a326892458240720d38537f7ba5e55211defe /ethosu/vela/driver_actions.py
parentda8741a14c3774d3161f59019d3003a2ee944400 (diff)
downloadethos-u-vela-9cf63a3612491198a39f6bd1f4a587589b3ac20a.tar.gz
MLBEDSW-7756: MLCE: Grouped convolutions runtime problem
- Added graph optimiser function to convert convolution groups into a split followed by separate convolutions and then a concat - Added semantic check for convolution groups - Added unit tests for convolution groups semantic checks - Fixed a minor typing issue with test_constraint_stride_range Change-Id: I78ade408aa23469a79c9f517c4751da8619b77a9 Signed-off-by: Tim Hall <tim.hall@arm.com>
Diffstat (limited to 'ethosu/vela/driver_actions.py')
-rw-r--r--ethosu/vela/driver_actions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ethosu/vela/driver_actions.py b/ethosu/vela/driver_actions.py
index 2e4412c8..a7111465 100644
--- a/ethosu/vela/driver_actions.py
+++ b/ethosu/vela/driver_actions.py
@@ -1,4 +1,4 @@
-# SPDX-FileCopyrightText: Copyright 2020-2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
+# SPDX-FileCopyrightText: Copyright 2020-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
#
# SPDX-License-Identifier: Apache-2.0
#
@@ -79,7 +79,7 @@ def build_config_word(arch):
if arch.is_ethos_u65_system:
n.set_product(1)
else:
- n.set_product(0) # U55
+ n.set_product(0) # Ethos-U55
n.set_shram_size(shram_size)
n.set_cmd_stream_version(0) # may be incremented in the future
n.set_macs_per_cc(log2_macs_cc)