aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/vela.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/vela.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/vela.py')
-rw-r--r--ethosu/vela/vela.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/ethosu/vela/vela.py b/ethosu/vela/vela.py
index 923d8ec8..b9e224cb 100644
--- a/ethosu/vela/vela.py
+++ b/ethosu/vela/vela.py
@@ -181,16 +181,6 @@ def main(args=None):
help="System configuration to use (default: %(default)s)",
)
parser.add_argument(
- "--permanent-storage",
- default=MemArea.OffChipFlash,
- type=lambda s: MemArea[s],
- choices=list(MemArea)[3:5],
- help=(
- "Memory area for permanent storage, only valid for Ethos-U55. "
- "To store the weights and other constant data in SRAM, select 'OnChipFlash'. (default: %(default)s)"
- ),
- )
- parser.add_argument(
"--tensor-allocator",
default=TensorAllocator.Greedy,
type=lambda s: TensorAllocator[s],
@@ -296,7 +286,6 @@ def main(args=None):
vela_config=config,
system_config=args.system_config,
accelerator_config=args.accelerator_config,
- permanent_storage=args.permanent_storage,
override_block_config=force_block_config,
block_config_limit=args.block_config_limit,
global_memory_clock_scale=args.global_memory_clock_scale,