From 7ce6b32b815b6eb01bf3b348a3df37bb783c3a94 Mon Sep 17 00:00:00 2001 From: Rickard Bolin Date: Thu, 2 Jun 2022 09:30:33 +0000 Subject: MLBEDSW-4783: Make config handling more user friendly Vela was not able to parse config file paths entered with forward slashes. This patch will make it possible to use both forward and backslashes when specifying paths. Signed-off-by: Rickard Bolin Change-Id: I0f4cfc16bde5738c73059af6216d2bdc3821c68b --- ethosu/vela/architecture_features.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ethosu/vela/architecture_features.py') diff --git a/ethosu/vela/architecture_features.py b/ethosu/vela/architecture_features.py index 679947fc..e0e44b29 100644 --- a/ethosu/vela/architecture_features.py +++ b/ethosu/vela/architecture_features.py @@ -741,6 +741,8 @@ class ArchitectureFeatures: # display the system configuration and memory mode if verbose_config: + print("Configuration files:") + print(f" {vela_config_files}") print(f"System Configuration ({self.system_config}):") print(f" core_clock = {self.core_clock}") print(f" axi0_port = {self.axi0_port.name}") -- cgit v1.2.1