Imported Upstream version 1.8.0
[platform/core/ml/nnfw.git] / infra / scripts / test_arm_nnpkg.sh
1 #!/bin/bash
2
3 set -eo pipefail
4 source "$(dirname "${BASH_SOURCE[0]}")/common.sh"
5
6 BACKENDS=("acl_cl" "acl_neon" "cpu")
7
8 for BACKEND in "${BACKENDS[@]}";
9 do
10   NNPackageTest ${BACKEND} "Product/out/test/list/nnpkg_test_list.armv7l-linux.${BACKEND}"
11 done
12
13 # Interpreter test
14 export DISABLE_COMPILE=1
15 NNPackageTest "interp" "Product/out/test/list/nnpkg_test_list.noarch.interp"
16 unset DISABLE_COMPILE