summaryrefslogtreecommitdiff
path: root/tests/scripts/test_scheduler_with_profiling.sh
diff options
context:
space:
mode:
authorChunseok Lee <chunseok.lee@samsung.com>2020-04-23 14:45:49 +0900
committerChunseok Lee <chunseok.lee@samsung.com>2020-04-23 14:45:49 +0900
commite2ef8438a24f7c56a0744eb579a6e293ee2fbf8e (patch)
tree44a1a7951d168dd4370e13593ed03f4bc6d920c5 /tests/scripts/test_scheduler_with_profiling.sh
parent302e6564a7a76109e1178207e44e45a58631c477 (diff)
downloadnnfw-e2ef8438a24f7c56a0744eb579a6e293ee2fbf8e.tar.gz
nnfw-e2ef8438a24f7c56a0744eb579a6e293ee2fbf8e.tar.bz2
nnfw-e2ef8438a24f7c56a0744eb579a6e293ee2fbf8e.zip
Imported Upstream version 1.4.0upstream/1.4.0submit/tizen/20200423.054851
Diffstat (limited to 'tests/scripts/test_scheduler_with_profiling.sh')
-rwxr-xr-xtests/scripts/test_scheduler_with_profiling.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/scripts/test_scheduler_with_profiling.sh b/tests/scripts/test_scheduler_with_profiling.sh
index 499e03973..61b2a4f4c 100755
--- a/tests/scripts/test_scheduler_with_profiling.sh
+++ b/tests/scripts/test_scheduler_with_profiling.sh
@@ -11,7 +11,7 @@ TEST_DRIVER_DIR="$( cd "$( dirname "${BASH_SOURCE}" )" && pwd )"
ARTIFACT_PATH="$TEST_DRIVER_DIR/../.."
BENCHMARK_DRIVER_BIN=$ARTIFACT_PATH/Product/out/bin/tflite_benchmark
REPORT_DIR=$ARTIFACT_PATH/report
-RUN_TEST_SH=$ARTIFACT_PATH/tests/framework/run_test.sh
+RUN_TEST_SH=$ARTIFACT_PATH/tests/scripts/framework/run_test.sh
BENCHMARK_MODEL_LIST="MODELS/inception_nonslim MODELS/inception_slim MODELS/mobilenet"
if [ ! -e "$RUN_TEST_SH" ]; then
@@ -72,7 +72,7 @@ function run_benchmark_test()
export USE_SCHEDULER=1
export PROFILING_MODE=1
export EXECUTOR="Dataflow"
- export NEURUN_LOG_ENABLE=1
+ export ONERT_LOG_ENABLE=1
for ((j = 1 ; j <= $PROFILING_RUN_CNT ; j++)); do
# Save the verbose log of each run
LOG_FILE=$REPORT_MODEL_DIR/tflite_profiling_$j.txt
@@ -89,7 +89,7 @@ function run_benchmark_test()
# Save the exec_time.json of each run
cp "exec_time.json" $REPORT_MODEL_DIR/"exec_time_$j.json"
done
- unset NEURUN_LOG_ENABLE
+ unset ONERT_LOG_ENABLE
##################################################################################