summaryrefslogtreecommitdiff
path: root/tests/scripts/test_driver.sh
diff options
context:
space:
mode:
authorChunseok Lee <chunseok.lee@samsung.com>2020-03-05 15:10:09 +0900
committerChunseok Lee <chunseok.lee@samsung.com>2020-03-05 15:22:53 +0900
commitd91a039e0eda6fd70dcd22672b8ce1817c1ca50e (patch)
tree62668ec548cf31fadbbf4e99522999ad13434a25 /tests/scripts/test_driver.sh
parentbd11b24234d7d43dfe05a81c520aa01ffad06e42 (diff)
downloadnnfw-d91a039e0eda6fd70dcd22672b8ce1817c1ca50e.tar.gz
nnfw-d91a039e0eda6fd70dcd22672b8ce1817c1ca50e.tar.bz2
nnfw-d91a039e0eda6fd70dcd22672b8ce1817c1ca50e.zip
catch up to tizen_5.5 and remove unness dir
- update to tizen_5.5 - remove dirs
Diffstat (limited to 'tests/scripts/test_driver.sh')
-rwxr-xr-xtests/scripts/test_driver.sh14
1 files changed, 3 insertions, 11 deletions
diff --git a/tests/scripts/test_driver.sh b/tests/scripts/test_driver.sh
index 97a3dab27..a5dbf4aaf 100755
--- a/tests/scripts/test_driver.sh
+++ b/tests/scripts/test_driver.sh
@@ -74,7 +74,6 @@ VERIFICATION_ON="false"
BENCHMARK_ON="false"
BENCHMARK_OP_ON="false"
BENCHMARK_TFLITE_MODEL_ON="false"
-BENCHMARK_ACL_ON="false"
ACL_ENV_ON="false"
PROFILE_ON="false"
REPORT_DIR=""
@@ -149,9 +148,9 @@ do
ALLTEST_ON="false"
BENCHMARK_TFLITE_MODEL_ON="true"
;;
+ # TODO Remove --benchmark_acl option after CI update
--benchmark_acl)
ALLTEST_ON="false"
- BENCHMARK_ACL_ON="true"
;;
--acl_envon)
ACL_ENV_ON="true"
@@ -208,7 +207,7 @@ if [ "$ACL_ENV_ON" == "true" ]; then
switch_nnfw_kernel_env "ON" "acl"
fi
-# Run unittest in each part such as Runtime, ACL
+# Run unittest in each part such as Runtime
if [ "$ALLTEST_ON" == "true" ] || [ "$UNITTEST_ON" == "true" ]; then
if [ "$UNITTESTALL_ON" == "true" ]; then
$TEST_DRIVER_DIR/run_unittest.sh \
@@ -285,15 +284,8 @@ if [ "$BENCHMARK_OP_ON" == "true" ]; then
--modelfilepath=$ARTIFACT_PATH/tests/framework
fi
-# Run benchmark/acl/benchmark_googlenet, mobilenet and inception_v3
-if [ "$BENCHMARK_ACL_ON" == "true" ]; then
- $TEST_DRIVER_DIR/run_benchmark_acl.sh \
- --reportdir=$REPORT_DIR/benchmark \
- --bindir=$ARTIFACT_PATH/Product/out/bin
-fi
-
# Make json file. Actually, this process is only needed on CI. That's why it is in test_driver.sh.
-if [ "$BENCHMARK_ON" == "true" ] || [ "$BENCHMARK_ACL_ON" == "true" ] || [ "$BENCHMARK_OP_ON" == "true" ]; then
+if [ "$BENCHMARK_ON" == "true" ] || [ "$BENCHMARK_OP_ON" == "true" ]; then
# functions to fill json with benchmark results
source $ARTIFACT_PATH/tests/scripts/print_to_json.sh
if [ "$BENCHMARK_OP_ON" == "true" ]; then