aboutsummaryrefslogtreecommitdiff
path: root/delegate/common/include
diff options
context:
space:
mode:
authorTeresa Charlin <teresa.charlinreyes@arm.com>2023-10-04 11:17:03 +0100
committerTeresaARM <teresa.charlinreyes@arm.com>2023-10-05 18:18:29 +0000
commit19ad816539037a095749cdd41852292a3d87dd2b (patch)
tree409697e5f10ac6a4e1b86cd86bfba5e0663f16ba /delegate/common/include
parent727d017aa3559cb33c97a8d77b5a32fbb98b9e35 (diff)
downloadarmnn-19ad816539037a095749cdd41852292a3d87dd2b.tar.gz
IVGCVSW-8060 Add ArmNNSettings parser function for Opaque Delegate
* Add Unit Tests * Update DelegateOptions constructor Signed-off-by: Teresa Charlin <teresa.charlinreyes@arm.com> Change-Id: I0e88403ac280e4cf8710ae7ee38b3b56dba42adc
Diffstat (limited to 'delegate/common/include')
-rw-r--r--delegate/common/include/DelegateOptions.hpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/delegate/common/include/DelegateOptions.hpp b/delegate/common/include/DelegateOptions.hpp
index abf446a402..d4924ccf65 100644
--- a/delegate/common/include/DelegateOptions.hpp
+++ b/delegate/common/include/DelegateOptions.hpp
@@ -120,6 +120,17 @@ public:
* Possible values: ["true"/"false"] \n
* Description: Add debug data for easier troubleshooting
*
+ * Option key: "infer-output-shape" \n
+ * Possible values: ["true"/"false"] \n
+ * Description: Infers output tensor shape from input tensor shape and validate where applicable.
+ *
+ * Option key: "allow-expanded-dims" \n
+ * Possible values: ["true"/"false"] \n
+ * Description: If true will disregard dimensions with a size of 1 when validating tensor shapes but tensor
+ * sizes must still match. \n
+ * This is an Experimental parameter that is incompatible with "infer-output-shape". \n
+ * This parameter may be removed in a later update.
+ *
* Option key: "memory-import" \n
* Possible values: ["true"/"false"] \n
* Description: Enable memory import
@@ -164,17 +175,6 @@ public:
* Possible values: [filenameString] \n
* Description: Serialize the optimized network to the file specified in "dot" format.
*
- * Option key: "infer-output-shape" \n
- * Possible values: ["true"/"false"] \n
- * Description: Infers output tensor shape from input tensor shape and validate where applicable.
- *
- * Option key: "allow-expanded-dims" \n
- * Possible values: ["true"/"false"] \n
- * Description: If true will disregard dimensions with a size of 1 when validating tensor shapes but tensor
- * sizes must still match. \n
- * This is an Experimental parameter that is incompatible with "infer-output-shape". \n
- * This parameter may be removed in a later update.
- *
* Option key: "disable-tflite-runtime-fallback" \n
* Possible values: ["true"/"false"] \n
* Description: Disable TfLite Runtime fallback in the Arm NN TfLite delegate.