summaryrefslogtreecommitdiff
path: root/compiler/one-cmds/tests/prepare_test_materials.sh
blob: c171cfe0172f40d3ca96e3403e3235df8a7a9f33 (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
#!/bin/bash

# Copyright (c) 2020 Samsung Electronics Co., Ltd. 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.

# See https://github.com/Samsung/ONE/issues/4155 for information

SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
pushd $SCRIPT_PATH > /dev/null

if [[ ! -s "inception_v3.pb" ]]; then
    rm -rf inception_v3_2018_04_27.tgz
    wget https://storage.googleapis.com/download.tensorflow.org/models/tflite/model_zoo/upload_20180427/inception_v3_2018_04_27.tgz
    tar zxvf inception_v3_2018_04_27.tgz
fi

if [[ ! -s "while_3.pbtxt" ]]; then
    rm -rf while_3.zip
    wget https://github.com/Samsung/ONE/files/5095630/while_3.zip
    unzip while_3.zip
    # https://github.com/Samsung/ONE/issues/4155#issuecomment-689320297
fi

if [[ ! -s "mobilenet_test_data.h5" ]]; then
    rm -rf mobilenet_test_data.zip
    wget https://github.com/Samsung/ONE/files/5139460/mobilenet_test_data.zip
    unzip mobilenet_test_data.zip
    # https://github.com/Samsung/ONE/issues/4155#issuecomment-689321538
fi

if [[ ! -s "bcq.pb" ]]; then
    rm -rf bcq.pb.zip
    wget https://github.com/Samsung/ONE/files/5153842/bcq.pb.zip
    unzip bcq.pb.zip
    # https://github.com/Samsung/ONE/issues/4155#issuecomment-689324597
fi

if [[ ! -s "img_files" ]]; then
    rm -rf img_files.zip
    wget https://github.com/Samsung/ONE/files/5499172/img_files.zip
    unzip img_files.zip
    # https://github.com/Samsung/ONE/issues/3213#issuecomment-722757499
fi

if [ ! -d "raw_files" ] || [ ! -s "datalist.txt" ]; then
    ../bin/venv/bin/python preprocess_images.py
fi

if [[ ! -s "inception_v3_test_data.h5" ]]; then
  ../bin/venv/bin/python ../bin/rawdata2hdf5 \
  --data_list datalist.txt \
  --output_path inception_v3_test_data.h5
fi

if [[ ! -d "test_saved_model" ]]; then
    rm -rf test_saved_model.zip
    wget https://github.com/Samsung/ONE/files/5516226/test_saved_model.zip
    unzip test_saved_model.zip
    # https://github.com/Samsung/ONE/issues/4268#issuecomment-724578237
fi

if [[ ! -s "test_keras_model.h5" ]]; then
    rm -rf test_keras_model.zip
    wget https://github.com/Samsung/ONE/files/5520777/test_keras_model.zip
    unzip test_keras_model.zip
    # https://github.com/Samsung/ONE/issues/4268#issuecomment-725025805
fi

if [[ ! -s "test_onnx_model.onnx" ]]; then
    rm -rf test_onnx_model.zip
    wget https://github.com/Samsung/ONE/files/5768243/test_onnx_model.zip
    unzip test_onnx_model.zip
    # https://github.com/Samsung/ONE/issues/5548#issuecomment-754373360
fi

if [[ ! -s "onnx_conv2d_conv2d.onnx" ]]; then
    rm -rf onnx_conv2d_conv2d.zip
    wget https://github.com/Samsung/ONE/files/5774648/onnx_conv2d_conv2d.zip
    unzip onnx_conv2d_conv2d.zip
    # https://github.com/Samsung/ONE/issues/5577#issuecomment-755078444
fi

if [[ ! -s "reshape_matmul.onnx" ]]; then
    rm -rf reshape_matmul.zip
    wget https://github.com/Samsung/ONE/files/9082878/reshape_matmul.zip
    unzip reshape_matmul.zip
    # https://github.com/Samsung/ONE/issues/9405#issuecomment-1180198137
fi

if [[ ! -s "Net_InstanceNorm_003.part" ]]; then
    rm -rf Net_InstanceNorm_003.zip
    wget https://github.com/Samsung/ONE/files/8608844/Net_InstanceNorm_003.zip
    unzip Net_InstanceNorm_003.zip
    # https://github.com/Samsung/ONE/issues/8570#issuecomment-1115804257
fi

function files_missing() {
    condition="test "

    for f in "${@}"; do
        condition="${condition} ! -s ${f} -o"
    done

    # last condition is always false to properly close last "or"
    condition="${condition} -z non_zero_string "
    ${condition}
}

declare -a TEST_RECCURENT_MODELS=(\
  "RNN.onnx" "RNN-nobias.onnx" "RNN-relu.onnx" "RNN-bi.onnx" "RNN-noinit.onnx"\
  "LSTM.onnx" "LSTM-bi.onnx" "LSTM-noinit.onnx" "LSTM-nobias.onnx"
)

if files_missing "${TEST_RECCURENT_MODELS[@]}"; then
    rm -rf test_onnx_recurrent_models.zip
    wget https://github.com/Samsung/ONE/files/8067909/test_onnx_recurrent_models.zip
    unzip test_onnx_recurrent_models.zip
    # https://github.com/Samsung/ONE/issues/8395#issuecomment-1040072097
fi

declare -a NEG_TEST_RECCURENT_MODELS=("rnn_variable.onnx" "lstm_variable.onnx")

if files_missing "${NEG_TEST_RECCURENT_MODELS[@]}"; then
    rm -rf neg_test_onnx_recurrent_models.zip
    wget https://github.com/Samsung/ONE/files/8137183/neg_test_onnx_recurrent_models.zip
    unzip neg_test_onnx_recurrent_models.zip
    # https://github.com/Samsung/ONE/issues/8395#issuecomment-1050364375
fi

# prepare 'inception_v3.circle' file used for quantization test
inputfile="./inception_v3.pb"
outputfile="./inception_v3.circle"

if [[ ! -s ${outputfile} ]]; then
  ../bin/one-import-tf \
  --input_path ${inputfile} \
  --output_path ${outputfile} \
  --input_arrays input --input_shapes "1,299,299,3" \
  --output_arrays InceptionV3/Predictions/Reshape_1
fi

# prepare 'inception_v3.mat.q8.circle' file used for quantization test
inputfile="./inception_v3.circle"
outputfile="./inception_v3.mat.q8.circle"

if [[ ! -s ${outputfile} ]]; then
  ../bin/one-quantize \
  --input_path ${inputfile} \
  --output_path ${outputfile}
fi

popd > /dev/null