run_demo.sh 5.3 KB
Newer Older
G
Guanghua Yu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
#!/bin/bash
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you 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.
set -e
set -u
set -o pipefail

# Show usage
function show_usage() {
    cat <<EOF
Usage: run_demo.sh
-h, --help
G
Guanghua Yu 已提交
27
	Display this help message.
G
Guanghua Yu 已提交
28
--cmsis_path CMSIS_PATH
G
Guanghua Yu 已提交
29
	Set path to CMSIS.
G
Guanghua Yu 已提交
30
--ethosu_platform_path ETHOSU_PLATFORM_PATH
G
Guanghua Yu 已提交
31
	Set path to Arm(R) Ethos(TM)-U core platform.
G
Guanghua Yu 已提交
32
--fvp_path FVP_PATH
G
Guanghua Yu 已提交
33
	Set path to FVP.
G
Guanghua Yu 已提交
34
--cmake_path
G
Guanghua Yu 已提交
35 36 37
	Set path to cmake.
--enable_FVP
	Set 1 to run application on local Fixed Virtual Platforms (FVPs) executables.
G
Guanghua Yu 已提交
38 39 40
EOF
}

G
Guanghua Yu 已提交
41 42 43 44 45 46 47 48
# Configure environment variables
FVP_enable=0
export PATH=/opt/arm/gcc-arm-none-eabi/bin:$PATH

# Install python libraries
echo -e "\e[36mInstall python libraries\e[0m"
sudo pip install -r ./requirements.txt

G
Guanghua Yu 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
# Parse arguments
while (( $# )); do
    case "$1" in
        -h|--help)
            show_usage
            exit 0
            ;;

        --cmsis_path)
            if [ $# -gt 1 ]
            then
                export CMSIS_PATH="$2"
                shift 2
            else
                echo 'ERROR: --cmsis_path requires a non-empty argument' >&2
                show_usage >&2
                exit 1
            fi
            ;;

        --ethosu_platform_path)
            if [ $# -gt 1 ]
            then
                export ETHOSU_PLATFORM_PATH="$2"
                shift 2
            else
                echo 'ERROR: --ethosu_platform_path requires a non-empty argument' >&2
                show_usage >&2
                exit 1
            fi
            ;;

        --fvp_path)
            if [ $# -gt 1 ]
            then
                export PATH="$2/models/Linux64_GCC-6.4:$PATH"
                shift 2
            else
                echo 'ERROR: --fvp_path requires a non-empty argument' >&2
                show_usage >&2
                exit 1
            fi
            ;;

        --cmake_path)
            if [ $# -gt 1 ]
            then
                export CMAKE="$2"
                shift 2
            else
                echo 'ERROR: --cmake_path requires a non-empty argument' >&2
                show_usage >&2
                exit 1
            fi
            ;;
G
Guanghua Yu 已提交
104 105 106 107 108 109 110 111 112 113 114 115
            
        --enable_FVP)
            if [ $# -gt 1 ] && [ "$2" == "1" -o "$2" == "0" ];
            then
                FVP_enable="$2"
                shift 2
            else
                echo 'ERROR: --enable_FVP requires a right argument 1 or 0' >&2
                show_usage >&2
                exit 1
            fi
            ;;
G
Guanghua Yu 已提交
116 117 118 119 120 121 122 123 124

        -*|--*)
            echo "Error: Unknown flag: $1" >&2
            show_usage >&2
            exit 1
            ;;
    esac
done

G
Guanghua Yu 已提交
125 126 127 128 129 130 131 132 133 134
# Choose running environment: cloud(default) or local environment
Platform="VHT_Corstone_SSE-300_Ethos-U55"
if [ $FVP_enable == "1" ]; then
	Platform="FVP_Corstone_SSE-300_Ethos-U55"
	echo -e "\e[36mRun application on local Fixed Virtual Platforms (FVPs)\e[0m"
else
	if [ ! -d "/opt/arm/" ]; then
		sudo ./configure_avh.sh
	fi
fi
G
Guanghua Yu 已提交
135 136 137 138 139 140 141 142 143

# Directories
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"

# Make build directory
make cleanall
mkdir -p build
cd build

G
Guanghua Yu 已提交
144 145 146 147 148
# Get PaddlePaddle inference model
echo -e "\e[36mDownload PaddlePaddle inference model\e[0m"
wget https://bj.bcebos.com/v1/paddledet/deploy/Inference/picodet_s_320_coco_lcnet_no_nms.tar
tar -xf picodet_s_320_coco_lcnet_no_nms.tar

G
Guanghua Yu 已提交
149 150 151 152 153 154 155 156 157 158 159 160 161
# Compile model for Arm(R) Cortex(R)-M55 CPU and CMSIS-NN
# An alternative to using "python3 -m tvm.driver.tvmc" is to call
# "tvmc" directly once TVM has been pip installed.
python3 -m tvm.driver.tvmc compile --target=cmsis-nn,c \
    --target-cmsis-nn-mcpu=cortex-m55 \
    --target-c-mcpu=cortex-m55 \
    --runtime=crt \
    --executor=aot \
    --executor-aot-interface-api=c \
    --executor-aot-unpacked-api=1 \
    --pass-config tir.usmp.enable=1 \
    --pass-config tir.usmp.algorithm=hill_climb \
    --pass-config tir.disable_storage_rewrite=1 \
G
Guanghua Yu 已提交
162
    --pass-config tir.disable_vectorize=1 picodet_s_320_coco_lcnet_no_nms/model.pdmodel \
G
Guanghua Yu 已提交
163 164 165 166 167 168 169 170 171
    --output-format=mlf \
    --model-format=paddle \
    --module-name=picodet \
    --input-shapes image:[1,3,320,320] \
    --output=picodet.tar
tar -xf picodet.tar

# Create C header files
cd ..
G
Guanghua Yu 已提交
172
python3 ./convert_image.py ./image/000000014439_640x640.jpg
G
Guanghua Yu 已提交
173 174 175 176 177 178

# Build demo executable
cd ${script_dir}
echo ${script_dir}
make

G
Guanghua Yu 已提交
179 180
# Run demo executable on the AVH
$Platform -C cpu0.CFGDTCMSZ=15 \
G
Guanghua Yu 已提交
181 182 183
-C cpu0.CFGITCMSZ=15 -C mps3_board.uart0.out_file=\"-\" -C mps3_board.uart0.shutdown_tag=\"EXITTHESIM\" \
-C mps3_board.visualisation.disable-visualisation=1 -C mps3_board.telnetterminal0.start_telnet=0 \
-C mps3_board.telnetterminal1.start_telnet=0 -C mps3_board.telnetterminal2.start_telnet=0 -C mps3_board.telnetterminal5.start_telnet=0 \
G
Guanghua Yu 已提交
184
./build/demo --stat