aboutsummaryrefslogtreecommitdiff
path: root/src/mlia/target/ethos_u/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mlia/target/ethos_u/__init__.py')
-rw-r--r--src/mlia/target/ethos_u/__init__.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/mlia/target/ethos_u/__init__.py b/src/mlia/target/ethos_u/__init__.py
index 6b6777d..7fa8af1 100644
--- a/src/mlia/target/ethos_u/__init__.py
+++ b/src/mlia/target/ethos_u/__init__.py
@@ -8,16 +8,20 @@ from mlia.target.ethos_u.config import get_default_ethos_u_backends
from mlia.target.registry import registry
from mlia.target.registry import TargetInfo
-SUPPORTED_BACKENDS_PRIORITY = ["Vela", *CORSTONE_PRIORITY]
+SUPPORTED_BACKENDS_PRIORITY = [
+ "vela",
+ *(corstone.lower() for corstone in CORSTONE_PRIORITY),
+]
-for ethos_u in ("ethos-u55", "ethos-u65"):
+for name in ("Ethos-U55", "Ethos-U65"):
registry.register(
- ethos_u,
+ name.lower(),
TargetInfo(
supported_backends=SUPPORTED_BACKENDS_PRIORITY,
default_backends=get_default_ethos_u_backends(SUPPORTED_BACKENDS_PRIORITY),
advisor_factory_func=configure_and_get_ethosu_advisor,
target_profile_cls=EthosUConfiguration,
),
+ pretty_name=name,
)