From 6aed53be8c5d1af50125a7829b5a13c760f2aee2 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Thu, 4 May 2023 09:34:46 +0100 Subject: Add tflite-opaque-delegate flag in build-tool validation script Signed-off-by: Nikhil Raj Change-Id: I402a4c74610b5dc8a3ca6e22218b58fbe59474ed --- build-tool/scripts/validation.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build-tool') 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 -- cgit v1.2.1