From 1538dce9f07a310587f057aee5fbe25509963879 Mon Sep 17 00:00:00 2001 From: Rickard Bolin Date: Mon, 25 Apr 2022 11:07:56 +0000 Subject: 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 Change-Id: I2fcf52e7b2ddd2c4491dc370c85c0b3937d18062 --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'README.md') 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 -- cgit v1.2.1