summaryrefslogtreecommitdiff
path: root/infra/scripts/test_arm_nnpkg.sh
blob: d00eb730f6b331bfc994e3f0cc4fc926d98ab53c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

set -eo pipefail
source "$(dirname "${BASH_SOURCE[0]}")/common.sh"

BACKENDS=("acl_cl" "acl_neon" "cpu")

for BACKEND in "${BACKENDS[@]}";
do
  NNPackageTest ${BACKEND} "Product/out/test/list/nnpkg_test_list.armv7l-linux.${BACKEND}"
done

# Interpreter test
export DISABLE_COMPILE=1
NNPackageTest "interp" "Product/out/test/list/nnpkg_test_list.noarch.interp"
unset DISABLE_COMPILE