aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorRickard Bolin <rickard.bolin@arm.com>2022-04-25 11:07:56 +0000
committertim.hall <tim.hall@arm.com>2022-05-18 14:40:37 +0000
commit1538dce9f07a310587f057aee5fbe25509963879 (patch)
treed26781bb52598301fa07aa5ca8403ff190a6037b /README.md
parentc1be0873d9e28a21c7873793da896e6dd576292f (diff)
downloadethos-u-vela-1538dce9f07a310587f057aee5fbe25509963879.tar.gz
MLBEDSW-4783: Add config file directory structure
Add directory structure to support third party config files. Config files should now be placed in an appropriately named directory under the config_files directory, but can also be accessed by providing its absolute path to vela --config. Signed-off-by: Rickard Bolin <rickard.bolin@arm.com> Change-Id: I2fcf52e7b2ddd2c4491dc370c85c0b3937d18062
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 10 insertions, 3 deletions
diff --git a/README.md b/README.md
index eb8871e3..9ed36028 100644
--- a/README.md
+++ b/README.md
@@ -163,13 +163,20 @@ vela --optimise Performance --arena-cache-size 300000 my_model.tflite
7) Compile a network using a particular embedded system configuration defined in
Vela's configuration file. The following command selects the `My_Sys_Config`
-system configuration along with the `My_Mem_Mode` memory mode from the `vela_cfg.ini` configuration file.
+system configuration along with the `My_Mem_Mode` memory mode from the `vela.ini`
+configuration file located in the config_files directory.
```bash
-vela --config vela_cfg.ini --system-config My_Sys_Config --memory-mode My_Mem_Mode my_model.tflite
+vela --config Arm/vela.ini --system-config My_Sys_Config --memory-mode My_Mem_Mode my_model.tflite
```
-8) To get a list of all available options (see CLI Options section below):
+8) To get a list of all available configuration files in the config_files directory:
+
+```bash
+vela --list-config-files
+```
+
+9) To get a list of all available options (see CLI Options section below):
```bash
vela --help