run.sh 9.3 KB
Newer Older
Y
Yan Chunwei 已提交
1
#!/bin/bash
W
Wilber 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
# 
# 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.

17
set -x
I
iducn 已提交
18 19 20 21
PADDLE_ROOT=$1
TURN_ON_MKL=$2 # use MKL or Openblas
TEST_GPU_CPU=$3 # test both GPU/CPU mode or only CPU mode
DATA_DIR=$4 # dataset
22 23
USE_TENSORRT=$5
TENSORRT_ROOT_DIR=$6 # TensorRT root dir, default to /usr
24 25
WITH_ONNXRUNTIME=$7
MSVC_STATIC_CRT=$8
26
CUDA_LIB=$9/lib/x64
I
iducn 已提交
27
inference_install_dir=${PADDLE_ROOT}/build/paddle_inference_install_dir
28
WIN_DETECT=$(echo `uname` | grep "Win") # detect current platform
N
nhzlx 已提交
29

I
iducn 已提交
30 31 32
cd `dirname $0`
current_dir=`pwd`
if [ $2 == ON ]; then
33
  # You can export yourself if move the install path
I
iducn 已提交
34 35
  MKL_LIB=${inference_install_dir}/third_party/install/mklml/lib
  export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${MKL_LIB}
36
fi
I
iducn 已提交
37
if [ $3 == ON ]; then
38
  use_gpu_list='true false'
Y
Yan Chunwei 已提交
39
else
40 41
  use_gpu_list='false'
fi
L
Luo Tao 已提交
42

43 44 45 46 47 48 49 50 51 52 53 54 55 56
mkdir -p $DATA_DIR
cd $DATA_DIR

if [ $7 == ON ]; then
  ONNXRUNTIME_LIB=${inference_install_dir}/third_party/install/onnxruntime/lib
  export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${ONNXRUNTIME_LIB}
  PADDLE2ONNX_LIB=${inference_install_dir}/third_party/install/paddle2onnx/lib
  export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${PADDLE2ONNX_LIB}
  #download model
  mkdir -p MobileNetV2
  cd MobileNetV2
  if [[ -e "MobileNetV2.inference.model.tar.gz" ]]; then
    echo "MobileNetV2.inference.model.tar.gz has been downloaded."
  else
57 58 59 60 61
    if [ $WIN_DETECT != "" ]; then
      wget -q -Y off http://paddle-inference-dist.bj.bcebos.com/MobileNetV2.inference.model.tar.gz
    else
      wget -q --no-proxy http://paddle-inference-dist.bj.bcebos.com/MobileNetV2.inference.model.tar.gz
    fi
62 63 64 65 66
    tar xzf *.tar.gz
  fi
  cd ..
fi

D
dzhwinter 已提交
67
PREFIX=inference-vis-demos%2F
68
URL_ROOT=http://paddlemodels.bj.bcebos.com/${PREFIX}
D
dzhwinter 已提交
69

L
Luo Tao 已提交
70 71
# download vis_demo data
function download() {
I
iducn 已提交
72 73 74
  dir_name=$1
  mkdir -p $dir_name
  cd $dir_name
D
dzhwinter 已提交
75
  if [[ -e "${PREFIX}${dir_name}.tar.gz" ]]; then
76
    echo "${PREFIX}${dir_name}.tar.gz has been downloaded."
D
dzhwinter 已提交
77
  else
78 79 80 81 82
      if [ $WIN_DETECT != "" ]; then
        wget -q -Y off ${URL_ROOT}$dir_name.tar.gz
      else
        wget -q --no-proxy ${URL_ROOT}$dir_name.tar.gz
      fi
I
iducn 已提交
83
      tar xzf *.tar.gz
D
dzhwinter 已提交
84
  fi
I
iducn 已提交
85
  cd ..
L
Luo Tao 已提交
86
}
87

L
Luo Tao 已提交
88 89
vis_demo_list='se_resnext50 ocr mobilenet'
for vis_demo_name in $vis_demo_list; do
I
iducn 已提交
90
  download $vis_demo_name
L
Luo Tao 已提交
91 92
done

93 94
# download word2vec data
mkdir -p word2vec
I
iducn 已提交
95
cd word2vec
96 97 98 99
if [[ -e "word2vec.inference.model.tar.gz" ]]; then
  echo "word2vec.inference.model.tar.gz has been downloaded."
else
    wget -q http://paddle-inference-dist.bj.bcebos.com/word2vec.inference.model.tar.gz
I
iducn 已提交
100
    tar xzf *.tar.gz
101 102
fi

L
Luo Tao 已提交
103
# compile and test the demo
I
iducn 已提交
104
cd $current_dir
L
Luo Tao 已提交
105
mkdir -p build
I
iducn 已提交
106 107
cd build
rm -rf *
L
Luo Tao 已提交
108

109 110 111
# run all test cases before exit
EXIT_CODE=0

112
for WITH_STATIC_LIB in ON OFF; do
I
iducn 已提交
113
  if [ $(echo `uname` | grep "Win") != "" ]; then
W
Wilber 已提交
114 115
    # TODO(wilber, T8T9): Do we still need to support windows gpu static library
    if [ $TEST_GPU_CPU == ON ] && [ $WITH_STATIC_LIB == ON ]; then
Z
Zhou Wei 已提交
116
      continue
W
Wilber 已提交
117
    fi
118
    # -----simple_on_word2vec on windows-----
119
    cmake .. -GNinja -DPADDLE_LIB=${inference_install_dir} \
I
iducn 已提交
120
      -DWITH_MKL=$TURN_ON_MKL \
121
      -DDEMO_NAME=simple_on_word2vec \
I
iducn 已提交
122 123
      -DWITH_GPU=$TEST_GPU_CPU \
      -DWITH_STATIC_LIB=$WITH_STATIC_LIB \
124
      -DMSVC_STATIC_CRT=$MSVC_STATIC_CRT \
125 126 127 128
      -DWITH_ONNXRUNTIME=$WITH_ONNXRUNTIME \
      -DCMAKE_BUILD_TYPE=Release \
      -DCUDA_LIB="$CUDA_LIB"
    ninja
129
    for use_gpu in $use_gpu_list; do
130
      ./simple_on_word2vec.exe \
I
iducn 已提交
131 132 133
        --dirname=$DATA_DIR/word2vec/word2vec.inference.model \
        --use_gpu=$use_gpu
      if [ $? -ne 0 ]; then
134 135
        echo "simple_on_word2vec use_gpu:${use_gpu} runs failed " > ${current_dir}/test_summary.txt
        EXIT_CODE=1
136 137 138 139
      fi
    done

    # -----vis_demo on windows-----
I
iducn 已提交
140
    rm -rf *
141
    cmake .. -GNinja -DPADDLE_LIB=${inference_install_dir} \
I
iducn 已提交
142
      -DWITH_MKL=$TURN_ON_MKL \
143
      -DDEMO_NAME=vis_demo \
I
iducn 已提交
144 145
      -DWITH_GPU=$TEST_GPU_CPU \
      -DWITH_STATIC_LIB=$WITH_STATIC_LIB \
146
      -DMSVC_STATIC_CRT=$MSVC_STATIC_CRT \
147 148 149 150
      -DWITH_ONNXRUNTIME=$WITH_ONNXRUNTIME \
      -DCMAKE_BUILD_TYPE=Release \
      -DCUDA_LIB="$CUDA_LIB"
    ninja
151 152
    for use_gpu in $use_gpu_list; do
      for vis_demo_name in $vis_demo_list; do
153
        ./vis_demo.exe \
I
iducn 已提交
154 155 156 157 158
          --modeldir=$DATA_DIR/$vis_demo_name/model \
          --data=$DATA_DIR/$vis_demo_name/data.txt \
          --refer=$DATA_DIR/$vis_demo_name/result.txt \
          --use_gpu=$use_gpu
        if [ $? -ne 0 ]; then
159 160
          echo "vis demo $vis_demo_name use_gpu:${use_gpu} runs failed " >> ${current_dir}/test_summary.txt
          EXIT_CODE=1
161 162 163
        fi
      done
    done
164
    
165 166 167
    # --------tensorrt mobilenet on windows------
    if [ $USE_TENSORRT == ON -a $TEST_GPU_CPU == ON ]; then
      rm -rf *
168
      cmake .. -GNinja -DPADDLE_LIB=${inference_install_dir} \
169 170 171 172 173 174
        -DWITH_MKL=$TURN_ON_MKL \
        -DDEMO_NAME=trt_mobilenet_demo \
        -DWITH_GPU=$TEST_GPU_CPU \
        -DWITH_STATIC_LIB=$WITH_STATIC_LIB \
        -DMSVC_STATIC_CRT=$MSVC_STATIC_CRT \
        -DUSE_TENSORRT=$USE_TENSORRT \
175
        -DTENSORRT_ROOT=$TENSORRT_ROOT_DIR \
176 177 178 179 180
        -DWITH_ONNXRUNTIME=$WITH_ONNXRUNTIME \
        -DCMAKE_BUILD_TYPE=Release \
        -DCUDA_LIB="$CUDA_LIB"
      ninja
      ./trt_mobilenet_demo.exe \
181 182 183 184
        --modeldir=$DATA_DIR/mobilenet/model \
        --data=$DATA_DIR/mobilenet/data.txt \
        --refer=$DATA_DIR/mobilenet/result.txt 
      if [ $? -ne 0 ]; then
185 186
        echo "trt_mobilenet_demo runs failed." >> ${current_dir}/test_summary.txt
        EXIT_CODE=1
187 188
      fi
    fi
189
  else
190
    # -----simple_on_word2vec on linux/mac-----
I
iducn 已提交
191 192 193
    rm -rf *
    cmake .. -DPADDLE_LIB=${inference_install_dir} \
      -DWITH_MKL=$TURN_ON_MKL \
194
      -DDEMO_NAME=simple_on_word2vec \
I
iducn 已提交
195
      -DWITH_GPU=$TEST_GPU_CPU \
196 197
      -DWITH_STATIC_LIB=$WITH_STATIC_LIB \
      -DWITH_ONNXRUNTIME=$WITH_ONNXRUNTIME
I
iducn 已提交
198 199 200
    make -j$(nproc)
    word2vec_model=$DATA_DIR'/word2vec/word2vec.inference.model'
    if [ -d $word2vec_model ]; then
201 202
      for use_gpu in $use_gpu_list; do
        ./simple_on_word2vec \
I
iducn 已提交
203 204 205
          --dirname=$DATA_DIR/word2vec/word2vec.inference.model \
          --use_gpu=$use_gpu
        if [ $? -ne 0 ]; then
206 207
          echo "simple_on_word2vec use_gpu:${use_gpu} runs failed " >> ${current_dir}/test_summary.txt
          EXIT_CODE=1
208 209 210 211
        fi
      done
    fi
    # ---------vis_demo on linux/mac---------
I
iducn 已提交
212 213 214
    rm -rf *
    cmake .. -DPADDLE_LIB=${inference_install_dir} \
      -DWITH_MKL=$TURN_ON_MKL \
215
      -DDEMO_NAME=vis_demo \
I
iducn 已提交
216
      -DWITH_GPU=$TEST_GPU_CPU \
217 218
      -DWITH_STATIC_LIB=$WITH_STATIC_LIB \
      -DWITH_ONNXRUNTIME=$WITH_ONNXRUNTIME
I
iducn 已提交
219
    make -j$(nproc)
220 221 222
    for use_gpu in $use_gpu_list; do
      for vis_demo_name in $vis_demo_list; do
        ./vis_demo \
I
iducn 已提交
223 224 225 226 227
          --modeldir=$DATA_DIR/$vis_demo_name/model \
          --data=$DATA_DIR/$vis_demo_name/data.txt \
          --refer=$DATA_DIR/$vis_demo_name/result.txt \
          --use_gpu=$use_gpu
        if [ $? -ne 0 ]; then
228 229
          echo "vis demo $vis_demo_name use_gpu:${use_gpu} runs failed " >> ${current_dir}/test_summary.txt
          EXIT_CODE=1
230 231 232 233
        fi
      done
    done
    # --------tensorrt mobilenet on linux/mac------
I
iducn 已提交
234 235 236 237
    if [ $USE_TENSORRT == ON -a $TEST_GPU_CPU == ON ]; then
      rm -rf *
      cmake .. -DPADDLE_LIB=${inference_install_dir} \
        -DWITH_MKL=$TURN_ON_MKL \
238
        -DDEMO_NAME=trt_mobilenet_demo \
I
iducn 已提交
239 240 241
        -DWITH_GPU=$TEST_GPU_CPU \
        -DWITH_STATIC_LIB=$WITH_STATIC_LIB \
        -DUSE_TENSORRT=$USE_TENSORRT \
242 243
        -DTENSORRT_ROOT=$TENSORRT_ROOT_DIR \
        -DWITH_ONNXRUNTIME=$WITH_ONNXRUNTIME
I
iducn 已提交
244
      make -j$(nproc)
245
      ./trt_mobilenet_demo \
I
iducn 已提交
246 247 248 249
        --modeldir=$DATA_DIR/mobilenet/model \
        --data=$DATA_DIR/mobilenet/data.txt \
        --refer=$DATA_DIR/mobilenet/result.txt 
      if [ $? -ne 0 ]; then
250 251
        echo "trt_mobilenet_demo runs failed " >> ${current_dir}/test_summary.txt
        EXIT_CODE=1
252
      fi
N
nhzlx 已提交
253
    fi
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269

    # --------onnxruntime mobilenetv2 on linux/mac------
    if [ $WITH_ONNXRUNTIME == ON ]; then
      rm -rf *
      cmake .. -DPADDLE_LIB=${inference_install_dir} \
        -DWITH_MKL=$TURN_ON_MKL \
        -DDEMO_NAME=onnxruntime_mobilenet_demo \
        -DWITH_GPU=$TEST_GPU_CPU \
        -DWITH_STATIC_LIB=$WITH_STATIC_LIB \
        -DUSE_TENSORRT=$USE_TENSORRT \
        -DTENSORRT_ROOT=$TENSORRT_ROOT_DIR \
        -DWITH_ONNXRUNTIME=$WITH_ONNXRUNTIME
      make -j$(nproc)
      ./onnxruntime_mobilenet_demo \
        --modeldir=$DATA_DIR/MobileNetV2/MobileNetV2
      if [ $? -ne 0 ]; then
270 271
        echo "onnxruntime_mobilenet_demo runs failed " >> ${current_dir}/test_summary.txt
        EXIT_CODE=1
272 273
      fi
    fi
274 275
  fi
done
276

277
set +x
278 279 280 281 282 283 284 285 286 287 288 289 290 291

if [[ -f ${current_dir}/test_summary.txt ]];then
  echo " "
  echo "Summary demo_ci Failed Tests ..."
  echo "=====================test summary======================"
  echo "The following tests Failed: "
  cat ${current_dir}/test_summary.txt
  echo "========================================================"
  echo " "
fi

set -x

exit ${EXIT_CODE}