summaryrefslogtreecommitdiff
path: root/tests/scripts/test_driver.sh
diff options
context:
space:
mode:
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