|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 |
- // Tencent is pleased to support the open source community by making ncnn available.
- //
- // Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
- //
- // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
- // in compliance with the License. You may obtain a copy of the License at
- //
- // https://opensource.org/licenses/BSD-3-Clause
- //
- // 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.
-
- #include "testutil.h"
-
- #include "layer/convolution.h"
-
- static int test_convolution(int w, int h, int c, int outch, int kernel, int dilation, int stride, int pad, int bias, bool use_packing_layout)
- {
- ncnn::Mat a = RandomMat(w, h, c);
-
- ncnn::ParamDict pd;
- pd.set(0, outch);// num_output
- pd.set(1, kernel);// kernel_w
- pd.set(2, dilation);// dilation_w
- pd.set(3, stride);// stride_w
- pd.set(4, pad);// pad_w
- pd.set(5, bias);// bias_term
- pd.set(6, outch*c*kernel*kernel);
-
- std::vector<ncnn::Mat> weights(bias ? 2 : 1);
- weights[0] = RandomMat(outch*c*kernel*kernel);
- if (bias)
- weights[1] = RandomMat(outch);
- ncnn::ModelBinFromMatArray mb(weights.data());
-
- ncnn::Option opt;
- opt.num_threads = 1;
- opt.use_vulkan_compute = true;
- opt.use_int8_inference = false;
- opt.use_fp16_packed = false;
- opt.use_fp16_storage = false;
- opt.use_fp16_arithmetic = false;
- opt.use_int8_storage = false;
- opt.use_int8_arithmetic = false;
- opt.use_packing_layout = use_packing_layout;
-
- int ret = test_layer<ncnn::Convolution>("Convolution", pd, mb, opt, a);
- if (ret != 0)
- {
- fprintf(stderr, "test_convolution failed w=%d h=%d c=%d outch=%d kernel=%d dilation=%d stride=%d pad=%d bias=%d use_packing_layout=%d\n", w, h, c, outch, kernel, dilation, stride, pad, bias, use_packing_layout);
- }
-
- return ret;
- }
-
- static int test_convolution_0()
- {
- static const int kdsp[24][4] = {
- {1, 1, 1, 0},
- {1, 1, 2, 0},
- {2, 1, 1, 1},
- {2, 1, 2, 1},
- {2, 2, 1, 1},
- {2, 2, 2, 1},
- {3, 1, 1, 1},
- {3, 1, 2, 1},
- {3, 2, 1, 1},
- {3, 2, 2, 1},
- {4, 1, 1, 2},
- {4, 1, 2, 2},
- {4, 2, 1, 2},
- {4, 2, 2, 2},
- {5, 1, 1, 2},
- {5, 1, 2, 2},
- {5, 2, 1, 2},
- {5, 2, 2, 2},
- {7, 1, 1, 3},
- {7, 1, 2, 3},
- {7, 1, 3, 3},
- {7, 2, 1, 3},
- {7, 2, 2, 3},
- {7, 2, 3, 3},
- };
-
- for (int i=0; i<24; i++)
- {
- int ret = 0
- || test_convolution(13, 11, 1, 1, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, false)
- || test_convolution(13, 11, 2, 2, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, false)
- || test_convolution(13, 11, 3, 3, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, false)
- || test_convolution(13, 11, 4, 4, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, false)
- || test_convolution(13, 11, 7, 7, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, false)
- || test_convolution(13, 11, 8, 8, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, false)
- || test_convolution(13, 11, 15, 15, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, false)
- || test_convolution(13, 11, 16, 16, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, false)
-
- || test_convolution(13, 11, 1, 1, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution(13, 11, 2, 2, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution(13, 11, 3, 3, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution(13, 11, 3, 12, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution(13, 11, 4, 4, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution(13, 11, 8, 3, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution(13, 11, 8, 8, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution(13, 11, 16, 4, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution(13, 11, 16, 16, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- void set_param(ncnn::Layer* layer)
- {
- ((ncnn::Convolution*)layer)->use_int8_requantize = true;
- ((ncnn::Convolution*)layer)->top_blob_int8_scale = 64.f;
- return;
- }
-
- static int test_convolution_int8(int w, int h, int c, int outch, int kernel, int dilation, int stride, int pad, int bias, bool requant = false)
- {
- ncnn::Mat a = RandomMat(w, h, c);
-
- ncnn::ParamDict pd;
- pd.set(0, outch);// num_output
- pd.set(1, kernel);// kernel_w
- pd.set(2, dilation);// dilation_w
- pd.set(3, stride);// stride_w
- pd.set(4, pad);// pad_w
- pd.set(5, bias);// bias_term
- pd.set(6, outch*c*kernel*kernel);
- pd.set(8, 1);// int8_scale_term
-
- std::vector<ncnn::Mat> weights(bias ? 4 : 3);
- weights[0] = RandomMat(outch*c*kernel*kernel);
- if (bias)
- {
- weights[1] = RandomMat(outch);
- weights[2] = RandomMat(outch);
- weights[3] = RandomMat(1);
- }
- else
- {
- weights[1] = RandomMat(outch);
- weights[2] = RandomMat(1);
- }
- ncnn::ModelBinFromMatArray mb(weights.data());
-
- ncnn::Option opt;
- opt.num_threads = 1;
- opt.use_vulkan_compute = false;
- opt.use_int8_inference = true;
- opt.use_fp16_packed = false;
- opt.use_fp16_storage = false;
- opt.use_fp16_arithmetic = false;
- opt.use_int8_storage = false;
- opt.use_int8_arithmetic = false;
- opt.use_packing_layout = false;
-
- prehook_func func_ptr = nullptr;
- if (requant)
- {
- func_ptr = &set_param;
- }
-
- int ret = test_layer<ncnn::Convolution>("Convolution", pd, mb, opt, a, 0.001f, func_ptr);
- if (ret != 0)
- {
- fprintf(stderr, "test_convolution_int8 failed w=%d h=%d c=%d outch=%d kernel=%d dilation=%d stride=%d pad=%d bias=%d\n", w, h, c, outch, kernel, dilation, stride, pad, bias);
- }
-
- return 0;
- }
-
- static int test_convolution_1()
- {
- static const int kdsp[24][4] = {
- {1, 1, 1, 0},
- {1, 1, 2, 0},
- {2, 1, 1, 1},
- {2, 1, 2, 1},
- {2, 2, 1, 1},
- {2, 2, 2, 1},
- {3, 1, 1, 1},
- {3, 1, 2, 1},
- {3, 2, 1, 1},
- {3, 2, 2, 1},
- {4, 1, 1, 2},
- {4, 1, 2, 2},
- {4, 2, 1, 2},
- {4, 2, 2, 2},
- {5, 1, 1, 2},
- {5, 1, 2, 2},
- {5, 2, 1, 2},
- {5, 2, 2, 2},
- {7, 1, 1, 3},
- {7, 1, 2, 3},
- {7, 1, 3, 3},
- {7, 2, 1, 3},
- {7, 2, 2, 3},
- {7, 2, 3, 3},
- };
- for (int i=0; i<24; i++)
- {
- int ret = 0
- || test_convolution_int8(13, 11, 1, 1, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1)
- || test_convolution_int8(13, 11, 2, 2, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1)
- || test_convolution_int8(13, 11, 3, 3, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1)
- || test_convolution_int8(13, 11, 4, 4, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1)
- || test_convolution_int8(13, 11, 7, 7, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1)
- || test_convolution_int8(13, 11, 8, 8, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1)
- || test_convolution_int8(13, 11, 15, 15, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1)
- || test_convolution_int8(13, 11, 16, 16, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1)
-
- || test_convolution_int8(13, 11, 1, 1, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1)
- || test_convolution_int8(13, 11, 2, 2, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1)
- || test_convolution_int8(13, 11, 3, 3, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1)
- || test_convolution_int8(13, 11, 3, 12, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1)
- || test_convolution_int8(13, 11, 4, 4, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1)
- || test_convolution_int8(13, 11, 8, 3, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1)
- || test_convolution_int8(13, 11, 8, 8, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1)
- || test_convolution_int8(13, 11, 16, 4, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1)
- || test_convolution_int8(13, 11, 16, 16, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1)
- ;
-
- if (ret != 0)
- return -1;
- }
- for (int i=0; i<20; i++)
- {
- int ret = 0
- || test_convolution_int8(1, 1, 1, 1, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution_int8(1, 1, 1, 1, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution_int8(1, 1, 2, 2, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution_int8(1, 1, 3, 3, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution_int8(1, 1, 4, 4, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution_int8(1, 1, 7, 7, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution_int8(1, 1, 8, 8, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution_int8(1, 1, 15, 15, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution_int8(1, 1, 16, 16, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
-
- || test_convolution_int8(1, 1, 1, 1, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution_int8(1, 1, 2, 2, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution_int8(1, 1, 3, 3, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution_int8(1, 1, 3, 12, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution_int8(1, 1, 4, 4, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution_int8(1, 1, 8, 3, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution_int8(1, 1, 8, 8, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution_int8(1, 1, 16, 4, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- || test_convolution_int8(1, 1, 16, 16, kdsp[i][0], kdsp[i][1], kdsp[i][2], kdsp[i][3], 1, true)
- ;
-
- if (ret != 0)
- return -1;
- }
-
- return 0;
- }
-
- int main()
- {
- SRAND(7767517);
-
- return test_convolution_0() || test_convolution_1();
- }
|