Lines Matching +full:setup +full:- +full:x86_64
4 # SPDX-License-Identifier: MIT
7 # Common validation of command line arguments provided to setup-armnn.sh and build-armnn.sh
10 …SC2034: false positives for variables appear unused - variables are used in setup-armnn.sh and bui…
11 …sitives for variables referenced but not assigned - variables are assigned in setup-armnn.sh and b…
13 set -o nounset # Catch references to undefined variables.
14 set -o pipefail # Catch non zero exit codes within pipelines.
15 set -o errexit # Catch and propagate non zero exit codes.
19 echo "$name: --target-arch is not set. Example usage: --target-arch=aarch64"
23 if [ "$target_arch" != "aarch64" ] && [ "$target_arch" != "x86_64" ]; then
24 echo "$name: --target-arch is not valid. Valid options are: aarch64, x86_64"
30 echo "$name: aarch64 is the only supported --target_arch when host is aarch64"
36 if [ "$flag_tflite_delegate" -eq 0 ] && [ "$flag_tflite_parser" -eq 0 ] && [ "$flag_onnx_parser" -e…
37 …echo "$name: at least one of flags --tflite-delegate, --tflite-parser or --onnx-parser must be set…
41 # If --num-threads is set, overwrite default NUM_THREADS with user-defined value
42 if [ ! "$num_threads" -eq 0 ]; then