summaryrefslogtreecommitdiff
path: root/runtimes/tests/neural_networks_test/specs/generate_test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'runtimes/tests/neural_networks_test/specs/generate_test.sh')
-rwxr-xr-xruntimes/tests/neural_networks_test/specs/generate_test.sh118
1 files changed, 0 insertions, 118 deletions
diff --git a/runtimes/tests/neural_networks_test/specs/generate_test.sh b/runtimes/tests/neural_networks_test/specs/generate_test.sh
deleted file mode 100755
index c0676cf3c..000000000
--- a/runtimes/tests/neural_networks_test/specs/generate_test.sh
+++ /dev/null
@@ -1,118 +0,0 @@
-#
-# Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
-# Copyright (C) 2017 The Android Open Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-NNAPI_VERSION="
-V1_0
-V1_1
-Ex
-"
-
-# Process one test spec, and optionally provide the log file argument
-# for the slicing tool. The first argument is the test spec file; the
-# second optional argument specifies the log file this test should dump
-# results into. Only used by the test slicing tool to collect reference
-# outputs from the CPU. Also, it outputs the right #includes in the
-# test harness so the test would be invoked by TestGenerated.cpp
-#
-# This function shouldn't be directly called from other scripts. Use
-# generate_wrapper below for generating models and examples and updating the
-# test framework in one shot.
-
-spec_dir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
-export ANDROID_BUILD_TOP=$(readlink -f "$spec_dir/../../../../..")
-export NNAPI_BASE=$ANDROID_BUILD_TOP/nnfw
-[ -z "$TEST_DIR" ] && TEST_DIR="nnfw/runtimes/tests/neural_networks_test"
-
-function generate_one_testcase {
- # Generate one testcase
- local LOGFILE=$2
- if [ -n "$2" ]; then
- local LOGFILE=", \"$2\""
- fi
- local BASENAME=`basename -s .mod.py $1`
- local EXAMPLE="-e $ANDROID_BUILD_TOP/$TEST_DIR/generated/examples/$BASENAME.example.cpp"
-
- $NNAPI_BASE/externals/nnapi_test_generator/test_generator.py ./`basename $1`\
- -m $ANDROID_BUILD_TOP/$TEST_DIR/generated/models/$BASENAME.model.cpp $EXAMPLE
- ret=$?
- # Paste these lines into TestGenerated.cpp
- echo
- echo namespace $BASENAME {
- echo std::vector\<MixedTypedExample\> examples \= {
- echo // Generated $BASENAME test
- echo \#include \"generated/examples/$BASENAME.example.cpp\"
- echo }\;
- echo // Generated model constructor
- echo \#include \"generated/models/$BASENAME.model.cpp\"
- echo } // namespace $BASENAME
- echo TEST_F\(GeneratedTests\, $BASENAME\) {
- echo ' execute'\($BASENAME\:\:CreateModel\,
- echo ' '$BASENAME\:\:is_ignored\,
- echo ' '$BASENAME\:\:examples${LOGFILE}\)\;
- echo }
- return $ret
-}
-
-# Driver for generate_one_testcase. Append the output of generate_one_testcase
-# (which are C++ snippets that invokes the test harness) to the
-# all_generated_tests.cpp
-# Optionally, the "LOG" file ($2), only used by the slicing tool, would be
-# passed to generate_one_testcase.
-#
-# This function should be called to process one test spec from other scripts.
-function generate_wrapper {
- local LOGFILE=""
- if [ $1 = "log" ]; then
- local LOGFILE=$2
- shift
- shift
- fi
- cd $ANDROID_BUILD_TOP/$TEST_DIR/specs
- OUTFILE=$ANDROID_BUILD_TOP/$TEST_DIR/generated/all_generated_tests.cpp
- echo "// DO NOT EDIT;" > $OUTFILE
- echo "// Generated by ${TEST_DIR}/specs/generate_test.sh" >> $OUTFILE
-
- for ver in $NNAPI_VERSION;
- do
- VER_DIR=$ANDROID_BUILD_TOP/$TEST_DIR/specs/$ver
- [ ! -d $VER_DIR ] && continue
- cd $VER_DIR
- for f in $@;
- do
- generate_one_testcase $f $LOGFILE >> $OUTFILE
- if [ $? -ne 0 ]; then
- echo "Failed processing $f"
- return $?
- fi
- done
- done
- return $?
-}
-
-# Only run the following when not sourced by another script
-if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
- if [ $# -eq 0 ]; then
- FILES=*.mod.py
- else
- FILES="$@"
- fi
- generate_wrapper $FILES
- if [ $? -ne 0 ]; then
- exit $?
- fi
- echo "Generated file in ${TEST_DIR}/generated/"`basename $OUTFILE`
-fi # [[ "${BASH_SOURCE[0]}" == "${0}" ]]
-