aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ethosu/vela/vela.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ethosu/vela/vela.py b/ethosu/vela/vela.py
index b1edf34e..97cc8736 100644
--- a/ethosu/vela/vela.py
+++ b/ethosu/vela/vela.py
@@ -183,10 +183,10 @@ def main(args=None):
"--permanent-storage",
default=MemArea.OffChipFlash,
type=lambda s: MemArea[s],
- choices=list(MemArea)[3:-1],
+ choices=list(MemArea)[3:5],
help=(
- "Memory area for permanent storage. To store the weights and other constant data in SRAM select "
- "'OnChipFlash' (default: %(default)s)"
+ "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(