run.sh 8.7 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
I
iducn 已提交
26
inference_install_dir=${PADDLE_ROOT}/build/paddle_inference_install_dir
27
WIN_DETECT=$(echo `uname` | grep "Win") # detect current platform
N
nhzlx 已提交
28

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

42 43 44 45 46 47 48 49 50 51 52 53 54 55
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
56 57 58 59 60
    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
61 62 63 64 65
    tar xzf *.tar.gz
  fi
  cd ..
fi

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

L
Luo Tao 已提交
69 70
# download vis_demo data
function download() {
I
iducn 已提交
71 72 73
  dir_name=$1
  mkdir -p $dir_name
  cd $dir_name
D
dzhwinter 已提交
74
  if [[ -e "${PREFIX}${dir_name}.tar.gz" ]]; then
75
    echo "${PREFIX}${dir_name}.tar.gz has been downloaded."
D
dzhwinter 已提交
76
  else
77 78 79 80 81
      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 已提交
82
      tar xzf *.tar.gz
D
dzhwinter 已提交
83
  fi
I
iducn 已提交
84
  cd ..
L
Luo Tao 已提交
85
}
86

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

92 93
# download word2vec data
mkdir -p word2vec
I
iducn 已提交
94
cd word2vec
95 96 97 98
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 已提交
99
    tar xzf *.tar.gz
100 101
fi

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

108
for WITH_STATIC_LIB in ON OFF; do
I
iducn 已提交
109
  if [ $(echo `uname` | grep "Win") != "" ]; then
W
Wilber 已提交
110 111
    # 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 已提交
112
      continue
W
Wilber 已提交
113
    fi
114
    # -----simple_on_word2vec on windows-----
115
    cmake .. -G "Visual Studio 15 2017" -A x64 -T host=x64 -DPADDLE_LIB=${inference_install_dir} \
I
iducn 已提交
116
      -DWITH_MKL=$TURN_ON_MKL \
117
      -DDEMO_NAME=simple_on_word2vec \
I
iducn 已提交
118 119
      -DWITH_GPU=$TEST_GPU_CPU \
      -DWITH_STATIC_LIB=$WITH_STATIC_LIB \
120 121
      -DMSVC_STATIC_CRT=$MSVC_STATIC_CRT \
      -DWITH_ONNXRUNTIME=$WITH_ONNXRUNTIME
122 123 124
    msbuild  /maxcpucount /property:Configuration=Release cpp_inference_demo.sln
    for use_gpu in $use_gpu_list; do
      Release/simple_on_word2vec.exe \
I
iducn 已提交
125 126 127
        --dirname=$DATA_DIR/word2vec/word2vec.inference.model \
        --use_gpu=$use_gpu
      if [ $? -ne 0 ]; then
128 129 130 131 132 133
        echo "simple_on_word2vec demo runs fail."
        exit 1
      fi
    done

    # -----vis_demo on windows-----
I
iducn 已提交
134
    rm -rf *
135
    cmake .. -G "Visual Studio 15 2017" -A x64 -T host=x64 -DPADDLE_LIB=${inference_install_dir} \
I
iducn 已提交
136
      -DWITH_MKL=$TURN_ON_MKL \
137
      -DDEMO_NAME=vis_demo \
I
iducn 已提交
138 139
      -DWITH_GPU=$TEST_GPU_CPU \
      -DWITH_STATIC_LIB=$WITH_STATIC_LIB \
140 141
      -DMSVC_STATIC_CRT=$MSVC_STATIC_CRT \
      -DWITH_ONNXRUNTIME=$WITH_ONNXRUNTIME
142 143 144 145
    msbuild  /maxcpucount /property:Configuration=Release cpp_inference_demo.sln
    for use_gpu in $use_gpu_list; do
      for vis_demo_name in $vis_demo_list; do
        Release/vis_demo.exe \
I
iducn 已提交
146 147 148 149 150
          --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
151 152 153 154 155
          echo "vis demo $vis_demo_name runs fail."
          exit 1
        fi
      done
    done
156 157 158 159 160 161 162 163 164 165 166

    # --------tensorrt mobilenet on windows------
    if [ $USE_TENSORRT == ON -a $TEST_GPU_CPU == ON ]; then
      rm -rf *
      cmake .. -G "Visual Studio 15 2017" -A x64 -T host=x64 -DPADDLE_LIB=${inference_install_dir} \
        -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 \
167 168
        -DTENSORRT_ROOT=$TENSORRT_ROOT_DIR \
        -DWITH_ONNXRUNTIME=$WITH_ONNXRUNTIME
169 170 171 172 173 174 175 176 177 178
      msbuild  /maxcpucount /property:Configuration=Release cpp_inference_demo.sln
      Release/trt_mobilenet_demo.exe \
        --modeldir=$DATA_DIR/mobilenet/model \
        --data=$DATA_DIR/mobilenet/data.txt \
        --refer=$DATA_DIR/mobilenet/result.txt 
      if [ $? -ne 0 ]; then
        echo "trt demo trt_mobilenet_demo runs fail."
        exit 1
      fi
    fi
179
  else
180
    # -----simple_on_word2vec on linux/mac-----
I
iducn 已提交
181 182 183
    rm -rf *
    cmake .. -DPADDLE_LIB=${inference_install_dir} \
      -DWITH_MKL=$TURN_ON_MKL \
184
      -DDEMO_NAME=simple_on_word2vec \
I
iducn 已提交
185
      -DWITH_GPU=$TEST_GPU_CPU \
186 187
      -DWITH_STATIC_LIB=$WITH_STATIC_LIB \
      -DWITH_ONNXRUNTIME=$WITH_ONNXRUNTIME
I
iducn 已提交
188 189 190
    make -j$(nproc)
    word2vec_model=$DATA_DIR'/word2vec/word2vec.inference.model'
    if [ -d $word2vec_model ]; then
191 192
      for use_gpu in $use_gpu_list; do
        ./simple_on_word2vec \
I
iducn 已提交
193 194 195
          --dirname=$DATA_DIR/word2vec/word2vec.inference.model \
          --use_gpu=$use_gpu
        if [ $? -ne 0 ]; then
196 197 198 199 200 201
          echo "simple_on_word2vec demo runs fail."
          exit 1
        fi
      done
    fi
    # ---------vis_demo on linux/mac---------
I
iducn 已提交
202 203 204
    rm -rf *
    cmake .. -DPADDLE_LIB=${inference_install_dir} \
      -DWITH_MKL=$TURN_ON_MKL \
205
      -DDEMO_NAME=vis_demo \
I
iducn 已提交
206
      -DWITH_GPU=$TEST_GPU_CPU \
207 208
      -DWITH_STATIC_LIB=$WITH_STATIC_LIB \
      -DWITH_ONNXRUNTIME=$WITH_ONNXRUNTIME
I
iducn 已提交
209
    make -j$(nproc)
210 211 212
    for use_gpu in $use_gpu_list; do
      for vis_demo_name in $vis_demo_list; do
        ./vis_demo \
I
iducn 已提交
213 214 215 216 217
          --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
218 219 220 221 222 223
          echo "vis demo $vis_demo_name runs fail."
          exit 1
        fi
      done
    done
    # --------tensorrt mobilenet on linux/mac------
I
iducn 已提交
224 225 226 227
    if [ $USE_TENSORRT == ON -a $TEST_GPU_CPU == ON ]; then
      rm -rf *
      cmake .. -DPADDLE_LIB=${inference_install_dir} \
        -DWITH_MKL=$TURN_ON_MKL \
228
        -DDEMO_NAME=trt_mobilenet_demo \
I
iducn 已提交
229 230 231
        -DWITH_GPU=$TEST_GPU_CPU \
        -DWITH_STATIC_LIB=$WITH_STATIC_LIB \
        -DUSE_TENSORRT=$USE_TENSORRT \
232 233
        -DTENSORRT_ROOT=$TENSORRT_ROOT_DIR \
        -DWITH_ONNXRUNTIME=$WITH_ONNXRUNTIME
I
iducn 已提交
234
      make -j$(nproc)
235
      ./trt_mobilenet_demo \
I
iducn 已提交
236 237 238 239
        --modeldir=$DATA_DIR/mobilenet/model \
        --data=$DATA_DIR/mobilenet/data.txt \
        --refer=$DATA_DIR/mobilenet/result.txt 
      if [ $? -ne 0 ]; then
240 241 242
        echo "trt demo trt_mobilenet_demo runs fail."
        exit 1
      fi
N
nhzlx 已提交
243
    fi
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263

    # --------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
        echo "onnxruntime demo onnxruntime_mobilenet_demo runs fail."
        exit 1
      fi
    fi
264 265
  fi
done
266
set +x