aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikhil Raj <nikhil.raj@arm.com>2023-05-04 09:34:46 +0100
committerNikhil Raj <nikhil.raj@arm.com>2023-05-04 09:34:46 +0100
commit6aed53be8c5d1af50125a7829b5a13c760f2aee2 (patch)
treedd8f4423c82cf4e1092e436c766eb05d4a5a1193
parenta724e8526e1fee378df345c26e1f45a2bd398b31 (diff)
downloadarmnn-6aed53be8c5d1af50125a7829b5a13c760f2aee2.tar.gz
Add tflite-opaque-delegate flag in build-tool validation script
Signed-off-by: Nikhil Raj <nikhil.raj@arm.com> Change-Id: I402a4c74610b5dc8a3ca6e22218b58fbe59474ed
-rwxr-xr-xbuild-tool/scripts/validation.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-tool/scripts/validation.sh b/build-tool/scripts/validation.sh
index 12988b6ae8..48b23721ba 100755
--- a/build-tool/scripts/validation.sh
+++ b/build-tool/scripts/validation.sh
@@ -33,7 +33,7 @@ if [ "$HOST_ARCH" == "aarch64" ]; then
fi
# Validation of chosen Arm NN dependencies
-if [ "$flag_tflite_delegate" -eq 0 ] && [ "$flag_tflite_parser" -eq 0 ] && [ "$flag_onnx_parser" -eq 0 ]; then
+if [ "$flag_tflite_classic_delegate" -eq 0 ] && [ "$flag_tflite_opaque_delegate" -eq 0 ] && [ "$flag_tflite_parser" -eq 0 ] && [ "$flag_onnx_parser" -eq 0 ]; then
echo "$name: at least one of flags --tflite-classic-delegate, --tflite-opaque-delegate, --tflite-parser or --onnx-parser must be set (or --all)."
exit 1
fi