run.sh 6.9 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 24
USE_TENSORRT=$5
TENSORRT_ROOT_DIR=$6 # TensorRT root dir, default to /usr
MSVC_STATIC_CRT=$7
I
iducn 已提交
25
inference_install_dir=${PADDLE_ROOT}/build/paddle_inference_install_dir
26
WIN_DETECT=$(echo `uname` | grep "Win") # detect current platform
N
nhzlx 已提交
27

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

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

L
Luo Tao 已提交
44 45
# download vis_demo data
function download() {
I
iducn 已提交
46 47 48
  dir_name=$1
  mkdir -p $dir_name
  cd $dir_name
D
dzhwinter 已提交
49
  if [[ -e "${PREFIX}${dir_name}.tar.gz" ]]; then
50
    echo "${PREFIX}${dir_name}.tar.gz has been downloaded."
D
dzhwinter 已提交
51
  else
52 53 54 55 56
      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 已提交
57
      tar xzf *.tar.gz
D
dzhwinter 已提交
58
  fi
I
iducn 已提交
59
  cd ..
L
Luo Tao 已提交
60
}
I
iducn 已提交
61 62
mkdir -p $DATA_DIR
cd $DATA_DIR
L
Luo Tao 已提交
63 64
vis_demo_list='se_resnext50 ocr mobilenet'
for vis_demo_name in $vis_demo_list; do
I
iducn 已提交
65
  download $vis_demo_name
L
Luo Tao 已提交
66 67
done

68 69
# download word2vec data
mkdir -p word2vec
I
iducn 已提交
70
cd word2vec
71 72 73 74
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 已提交
75
    tar xzf *.tar.gz
76 77
fi

L
Luo Tao 已提交
78
# compile and test the demo
I
iducn 已提交
79
cd $current_dir
L
Luo Tao 已提交
80
mkdir -p build
I
iducn 已提交
81 82
cd build
rm -rf *
L
Luo Tao 已提交
83

84
for WITH_STATIC_LIB in ON OFF; do
I
iducn 已提交
85
  if [ $(echo `uname` | grep "Win") != "" ]; then
W
Wilber 已提交
86 87
    # 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 已提交
88
      continue
W
Wilber 已提交
89
    fi
90
    # -----simple_on_word2vec on windows-----
91
    cmake .. -G "Visual Studio 15 2017" -A x64 -T host=x64 -DPADDLE_LIB=${inference_install_dir} \
I
iducn 已提交
92
      -DWITH_MKL=$TURN_ON_MKL \
93
      -DDEMO_NAME=simple_on_word2vec \
I
iducn 已提交
94 95 96
      -DWITH_GPU=$TEST_GPU_CPU \
      -DWITH_STATIC_LIB=$WITH_STATIC_LIB \
      -DMSVC_STATIC_CRT=$MSVC_STATIC_CRT
97 98 99
    msbuild  /maxcpucount /property:Configuration=Release cpp_inference_demo.sln
    for use_gpu in $use_gpu_list; do
      Release/simple_on_word2vec.exe \
I
iducn 已提交
100 101 102
        --dirname=$DATA_DIR/word2vec/word2vec.inference.model \
        --use_gpu=$use_gpu
      if [ $? -ne 0 ]; then
103 104 105 106 107 108
        echo "simple_on_word2vec demo runs fail."
        exit 1
      fi
    done

    # -----vis_demo on windows-----
I
iducn 已提交
109
    rm -rf *
110
    cmake .. -G "Visual Studio 15 2017" -A x64 -T host=x64 -DPADDLE_LIB=${inference_install_dir} \
I
iducn 已提交
111
      -DWITH_MKL=$TURN_ON_MKL \
112
      -DDEMO_NAME=vis_demo \
I
iducn 已提交
113 114 115
      -DWITH_GPU=$TEST_GPU_CPU \
      -DWITH_STATIC_LIB=$WITH_STATIC_LIB \
      -DMSVC_STATIC_CRT=$MSVC_STATIC_CRT
116 117 118 119
    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 已提交
120 121 122 123 124
          --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
125 126 127 128 129
          echo "vis demo $vis_demo_name runs fail."
          exit 1
        fi
      done
    done
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151

    # --------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 \
        -DTENSORRT_ROOT=$TENSORRT_ROOT_DIR
      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
152
  else
153
    # -----simple_on_word2vec on linux/mac-----
I
iducn 已提交
154 155 156
    rm -rf *
    cmake .. -DPADDLE_LIB=${inference_install_dir} \
      -DWITH_MKL=$TURN_ON_MKL \
157
      -DDEMO_NAME=simple_on_word2vec \
I
iducn 已提交
158 159 160 161 162
      -DWITH_GPU=$TEST_GPU_CPU \
      -DWITH_STATIC_LIB=$WITH_STATIC_LIB
    make -j$(nproc)
    word2vec_model=$DATA_DIR'/word2vec/word2vec.inference.model'
    if [ -d $word2vec_model ]; then
163 164
      for use_gpu in $use_gpu_list; do
        ./simple_on_word2vec \
I
iducn 已提交
165 166 167
          --dirname=$DATA_DIR/word2vec/word2vec.inference.model \
          --use_gpu=$use_gpu
        if [ $? -ne 0 ]; then
168 169 170 171 172 173
          echo "simple_on_word2vec demo runs fail."
          exit 1
        fi
      done
    fi
    # ---------vis_demo on linux/mac---------
I
iducn 已提交
174 175 176
    rm -rf *
    cmake .. -DPADDLE_LIB=${inference_install_dir} \
      -DWITH_MKL=$TURN_ON_MKL \
177
      -DDEMO_NAME=vis_demo \
I
iducn 已提交
178 179 180
      -DWITH_GPU=$TEST_GPU_CPU \
      -DWITH_STATIC_LIB=$WITH_STATIC_LIB
    make -j$(nproc)
181 182 183
    for use_gpu in $use_gpu_list; do
      for vis_demo_name in $vis_demo_list; do
        ./vis_demo \
I
iducn 已提交
184 185 186 187 188
          --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
189 190 191 192 193 194
          echo "vis demo $vis_demo_name runs fail."
          exit 1
        fi
      done
    done
    # --------tensorrt mobilenet on linux/mac------
I
iducn 已提交
195 196 197 198
    if [ $USE_TENSORRT == ON -a $TEST_GPU_CPU == ON ]; then
      rm -rf *
      cmake .. -DPADDLE_LIB=${inference_install_dir} \
        -DWITH_MKL=$TURN_ON_MKL \
199
        -DDEMO_NAME=trt_mobilenet_demo \
I
iducn 已提交
200 201 202
        -DWITH_GPU=$TEST_GPU_CPU \
        -DWITH_STATIC_LIB=$WITH_STATIC_LIB \
        -DUSE_TENSORRT=$USE_TENSORRT \
203
        -DTENSORRT_ROOT=$TENSORRT_ROOT_DIR
I
iducn 已提交
204
      make -j$(nproc)
205
      ./trt_mobilenet_demo \
I
iducn 已提交
206 207 208 209
        --modeldir=$DATA_DIR/mobilenet/model \
        --data=$DATA_DIR/mobilenet/data.txt \
        --refer=$DATA_DIR/mobilenet/result.txt 
      if [ $? -ne 0 ]; then
210 211 212
        echo "trt demo trt_mobilenet_demo runs fail."
        exit 1
      fi
N
nhzlx 已提交
213
    fi
214 215
  fi
done
216
set +x