aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/architecture_features.py
diff options
context:
space:
mode:
authorPatrik Gustavsson <patrik.gustavsson@arm.com>2020-09-03 16:39:52 +0200
committerPatrik Gustavsson <patrik.gustavsson@arm.com>2020-09-04 12:50:58 +0200
commite5cf95b8c3de4e1e4cbc7046cafd4d84c7492596 (patch)
treebdfca1f8d3647d1cdc8bfdbe4c3b8fde748b8a82 /ethosu/vela/architecture_features.py
parent271ddc31745ca2aefa193f3a7308753126ac7c89 (diff)
downloadethos-u-vela-e5cf95b8c3de4e1e4cbc7046cafd4d84c7492596.tar.gz
MLBEDSW-2819 Removed CLI-option permanent-storage
Removed CLI-option permanent-storage Signed-off-by: Patrik Gustavsson <patrik.gustavsson@arm.com> Change-Id: I03e03205a183bd538292a73a07b095546fa3d95a
Diffstat (limited to 'ethosu/vela/architecture_features.py')
-rw-r--r--ethosu/vela/architecture_features.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/ethosu/vela/architecture_features.py b/ethosu/vela/architecture_features.py
index fd0e5c06..7391d714 100644
--- a/ethosu/vela/architecture_features.py
+++ b/ethosu/vela/architecture_features.py
@@ -178,7 +178,6 @@ Note the difference between ArchitectureFeatures and CompilerOptions
vela_config: ConfigParser,
accelerator_config,
system_config,
- permanent_storage,
override_block_config,
block_config_limit,
global_memory_clock_scale,
@@ -259,10 +258,6 @@ Note the difference between ArchitectureFeatures and CompilerOptions
self.default_weight_format = TensorFormat.WeightsCompressed
self.default_feature_map_format = TensorFormat.NHWC
- # This is to ignore permanent_storage = On/OffChipflash for Yoda
- if not self.is_yoda_system and permanent_storage != MemArea.OffChipFlash:
- self.permanent_storage_mem_area = permanent_storage
-
self.tensor_storage_mem_area = {
# permanent mem_area
TensorPurpose.Unknown: MemArea.Unknown,