aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/vela.py
diff options
context:
space:
mode:
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,