|
- /**
- * \file dnn/test/arm_common/conv_bias_multi_thread.cpp
- * MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
- *
- * Copyright (c) 2014-2021 Megvii Inc. All rights reserved.
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or
- * implied.
- */
- #include "megdnn/dtype.h"
- #include "test/arm_common/fixture.h"
- #include "test/common/benchmarker.h"
- #include "test/common/conv_bias.h"
-
- #include "test/arm_common/cpuinfo_help.h"
-
- using namespace megdnn;
- using namespace test;
- using namespace conv_bias;
-
- std::vector<conv_bias::TestArg> get_int8_quint8_conv_bias_args(
- std::vector<size_t> kernel, size_t stride, bool no_pad, bool no_bias,
- bool no_nonlinemode) {
- using namespace conv_bias;
- using Param = param::ConvBias;
- using NLMode = param::ConvBias::NonlineMode;
- std::vector<TestArg> args;
-
- auto pack = [&](size_t n, size_t oc, size_t ic, size_t w, size_t h,
- size_t kernel, size_t stride, NLMode nlmode) {
- Param param;
- param.stride_h = stride;
- param.stride_w = stride;
- if (!no_pad) {
- param.pad_h = kernel / 2;
- param.pad_w = kernel / 2;
- } else {
- param.pad_h = 0;
- param.pad_w = 0;
- }
- param.nonlineMode = nlmode;
-
- args.emplace_back(param, TensorShape{n, ic, h, w},
- TensorShape{oc, ic, kernel, kernel}, TensorShape{});
- if (!no_bias) {
- args.emplace_back(param, TensorShape{n, ic, h, w},
- TensorShape{oc, ic, kernel, kernel},
- TensorShape{1, oc, 1, 1});
- }
- };
-
- std::vector<NLMode> nonlinemode = {NLMode::IDENTITY};
- if (!no_nonlinemode) {
- nonlinemode.emplace_back(NLMode::RELU);
- nonlinemode.emplace_back(NLMode::H_SWISH);
- }
-
- for (size_t n : {1, 2}) {
- for (auto nlmode : nonlinemode) {
- for (size_t ic : {1, 3, 7}) {
- for (size_t oc : {1, 3, 7}) {
- for (size_t size : {4, 6, 8, 14, 16, 18}) {
- for (size_t kern : kernel) {
- pack(n, oc, ic, size, size, kern, stride, nlmode);
- }
- }
- }
- }
- }
- }
- return args;
- }
-
- std::vector<conv_bias::TestArg> get_nchw44_channel_wise_args(
- std::vector<size_t> kernel, size_t stride, bool no_bias,
- bool no_nonlinemode, bool no_full_bias) {
- using namespace conv_bias;
- using Param = param::ConvBias;
- using NLMode = param::ConvBias::NonlineMode;
- std::vector<TestArg> args;
-
- auto pack = [&](size_t n, size_t group, size_t w, size_t h, size_t kernel,
- size_t stride, NLMode nlmode, bool pad) {
- Param param;
- param.stride_h = stride;
- param.stride_w = stride;
- if (pad) {
- param.pad_h = kernel / 2;
- param.pad_w = kernel / 2;
- } else {
- param.pad_h = 0;
- param.pad_w = 0;
- }
- param.nonlineMode = nlmode;
- param.format = param::ConvBias::Format::NCHW44;
- param.sparse = param::ConvBias::Sparse::GROUP;
-
- args.emplace_back(param, TensorShape{n, group, h, w, 4},
- TensorShape{group, 1, 1, kernel, kernel, 4},
- TensorShape{});
- if (!no_bias) {
- args.emplace_back(param, TensorShape{n, group, h, w, 4},
- TensorShape{group, 1, 1, kernel, kernel, 4},
- TensorShape{1, group, 1, 1, 4});
- }
- if (!no_full_bias) {
- args.emplace_back(
- param, TensorShape{n, group, h, w, 4},
- TensorShape{group, 1, 1, kernel, kernel, 4},
- TensorShape{n, group,
- (h + 2 * param.pad_w - kernel) / stride + 1,
- (w + 2 * param.pad_w - kernel) / stride + 1,
- 4});
- }
- };
-
- std::vector<NLMode> nonlinemode = {NLMode::IDENTITY};
- if (!no_nonlinemode) {
- nonlinemode.emplace_back(NLMode::RELU);
- nonlinemode.emplace_back(NLMode::H_SWISH);
- }
- for (size_t n : {1, 2}) {
- for (auto nlmode : nonlinemode) {
- for (bool pad : {true}) {
- for (size_t group : {1, 2, 4, 7, 128}) {
- for (size_t size : {4, 6, 7, 9, 15, 40}) {
- for (size_t kern : kernel) {
- pack(n, group, size, size, kern, stride, nlmode,
- pad);
- }
- }
- }
- }
- for (bool pad : {false}) {
- for (size_t group : {1, 2, 7, 128}) {
- for (size_t size : {7, 9, 15, 40}) {
- for (size_t kern : kernel) {
- pack(n, group, size, size, kern, stride, nlmode,
- pad);
- }
- }
- }
- }
- }
- }
- return args;
- }
-
- void checker_conv_bias_qint8x8x8(std::vector<conv_bias::TestArg> args,
- Handle* handle, const char* algo_name) {
- Checker<ConvBias> checker(handle);
- checker.set_before_exec_callback(
- conv_bias::ConvBiasAlgoChecker<ConvBias>(algo_name));
- #if MEGDNN_ARMV7
- checker.set_epsilon(1);
- #endif
- UniformIntRNG rng{-50, 50};
- checker.set_dtype(0, dtype::QuantizedS8(0.41113496f))
- .set_dtype(1, dtype::QuantizedS8(0.01887994f))
- .set_dtype(2, dtype::QuantizedS32(0.41113496f * 0.01887994f))
- .set_dtype(4, dtype::QuantizedS8(0.49550694f))
- .set_rng(0, &rng)
- .set_rng(1, &rng)
- .set_rng(2, &rng);
- for (auto&& arg : args) {
- checker.set_param(arg.param).execs({arg.src, arg.filter, {}, {}, {}});
- }
- }
- void checker_conv_bias_qint8x8x32(std::vector<conv_bias::TestArg> args,
- Handle* handle, const char* algo_name) {
- Checker<ConvBias> checker(handle);
-
- UniformIntRNG rng{-50, 50};
- checker.set_dtype(0, dtype::QuantizedS8(2.5f))
- .set_dtype(1, dtype::QuantizedS8(2.5f))
- .set_dtype(2, dtype::QuantizedS32(6.25f))
- .set_dtype(4, {});
- checker.set_before_exec_callback(
- conv_bias::ConvBiasAlgoChecker<ConvBias>(algo_name));
- for (auto&& arg : args) {
- checker.set_param(arg.param).execs({arg.src, arg.filter, {}, {}, {}});
- }
- }
- void checker_conv_bias_quint8x8x8(std::vector<conv_bias::TestArg> args,
- Handle* handle, const char* algo_name) {
- Checker<ConvBias> checker(handle);
- checker.set_before_exec_callback(
- conv_bias::ConvBiasAlgoChecker<ConvBias>(algo_name));
- UniformIntRNG rng(0, 255);
- checker.set_dtype(0, dtype::Quantized8Asymm(0.2f, 100))
- .set_dtype(1, dtype::Quantized8Asymm(0.2f, 120))
- .set_dtype(2, dtype::QuantizedS32(0.04f))
- .set_dtype(4, dtype::Quantized8Asymm(1.4f, 110))
- .set_rng(0, &rng)
- .set_rng(1, &rng)
- .set_rng(2, &rng);
-
- for (auto&& arg : args) {
- checker.set_param(arg.param).execs({arg.src, arg.filter, {}, {}, {}});
- }
- }
- void checker_conv_bias_quint8x8x32(std::vector<conv_bias::TestArg> args,
- Handle* handle, const char* algo_name) {
- Checker<ConvBias> checker(handle);
- checker.set_before_exec_callback(
- conv_bias::ConvBiasAlgoChecker<ConvBias>(algo_name));
-
- NormalRNG rng(128.f);
- checker.set_rng(0, &rng).set_rng(1, &rng);
- checker.set_dtype(0, dtype::Quantized8Asymm(1.2f, (uint8_t)127))
- .set_dtype(1, dtype::Quantized8Asymm(1.3f, (uint8_t)129))
- .set_dtype(2, dtype::QuantizedS32(1.2 * 1.3))
- .set_dtype(4, {});
- for (auto&& arg : args) {
- checker.set_param(arg.param).execs({arg.src, arg.filter, {}, {}, {}});
- }
- }
- void checker_conv_bias_int8x8x32_multi(std::vector<conv_bias::TestArg> args,
- Handle* handle, const char* algo_name) {
- Checker<ConvBias> checker(handle);
- checker.set_before_exec_callback(
- conv_bias::ConvBiasAlgoChecker<ConvBias>(algo_name));
- checker.set_dtype(0, dtype::Int8());
- checker.set_dtype(1, dtype::Int8());
- checker.set_dtype(2, dtype::Int32());
- checker.set_dtype(4, dtype::Int32());
- for (auto&& arg : args) {
- checker.set_param(arg.param).execs({arg.src, arg.filter, {}, {}, {}});
- }
- }
-
- /**********************************F32 direct************************/
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_DIRECT_FP32) {
- check_conv_bias(
- get_conv_bias_args({1, 2, 3, 4, 5, 6, 7}, 1, false, false, false),
- handle(), "F32DIRECT");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_DIRECT_FP32_NCHW44_S1_K7) {
- //! k=7 s=1
- check_conv_bias(get_nchw44_conv_bias_args({7}, ONLY_IDENTITY_NLMODE,
- BR_AND_NO_BIASMODE, 1),
- handle(), "F32_CONV_NCHW44_DIRECT");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_DIRECT_FP32_NCHW44_S1_K2K3) {
- check_conv_bias(
- get_nchw44_conv_bias_args({2, 3}, FULL_NLMODE, ONLY_BR_BIASMODE, 1),
- handle(), "F32_CONV_NCHW44_DIRECT");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_DIRECT_FP32_NCHW44_S1_K5) {
- check_conv_bias(
- get_nchw44_conv_bias_args({5}, FULL_NLMODE, ONLY_BR_BIASMODE, 1),
- handle(), "F32_CONV_NCHW44_DIRECT");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_DIRECT_FP32_NCHW44_S2) {
- check_conv_bias(get_nchw44_conv_bias_args({2, 3, 5, 7}, FULL_NLMODE,
- ONLY_BR_BIASMODE, 2),
- handle(), "F32_CONV_NCHW44_DIRECT");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_DIRECT_FP32_STR1) {
- check_conv_bias(get_conv_bias_args({2, 3, 5, 7}, 1, false, false, false),
- handle(), "F32STRD1");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_DIRECT_FP32_STR2) {
- check_conv_bias(get_conv_bias_args({2, 3, 5, 7}, 2, false, false, false),
- handle(), "F32STRD2");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_NCHW_NCHW44_F32_S2) {
- check_conv_bias(
- get_nchw44_conv_bias_args({2, 3, 5, 7}, ONLY_IDENTITY_NLMODE,
- ONLY_BR_BIASMODE, 2, false, true),
- handle(), "F32_CONV_NCHW_NCHW44");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_NCHW_NCHW44_F32_S1) {
- check_conv_bias(
- get_nchw44_conv_bias_args({2, 3, 5, 7}, ONLY_IDENTITY_NLMODE,
- ONLY_BR_BIASMODE, 1, false, true),
- handle(), "F32_CONV_NCHW_NCHW44");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_CHANNEL_WISE_STRIDE1_FP32_NCHW44_1) {
- check_conv_bias(
- get_nchw44_channel_wise_args({2, 3}, 1, false, false, false),
- handle(), "F32_CHANNEL_WISE_NCHW44");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_CHANNEL_WISE_STRIDE1_FP32_NCHW44_2) {
- check_conv_bias(get_nchw44_channel_wise_args({5}, 1, false, false, false),
- handle(), "F32_CHANNEL_WISE_NCHW44");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_CHANNEL_WISE_STRIDE2_FP32_NCHW44) {
- check_conv_bias(
- get_nchw44_channel_wise_args({2, 3, 5}, 2, false, false, false),
- handle(), "F32_CHANNEL_WISE_NCHW44");
- }
-
- /**********************************F16 direct************************/
- #if __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_DIRECT_FP16) {
- NormalRNG rng(1);
- checker_conv_bias_f16(
- get_conv_bias_args({1, 2, 3, 4, 5, 6, 7}, 1, false, false, false),
- handle(), rng, "F16DIRECT", 0.03);
- }
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_DIRECT_FP16_STR1) {
- NormalRNG rng(1);
- checker_conv_bias_f16(get_conv_bias_args({2, 3, 5}, 1, false, false, false),
- handle(), rng, "F16STRD1", 0.03);
- }
- #endif
-
- /**********************************algo 8816 direct************************/
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_INT8_INT8_INT16_DIRECT) {
- checker_conv_bias_int8x8x16(
- get_conv_bias_args({2, 3, 5}, 1, false, true, true), handle(),
- "I8816DIRECT");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_INT8_INT8_INT16_STRIDE2) {
- checker_conv_bias_int8x8x16(
- get_conv_bias_args({2, 3, 5}, 2, false, true, true), handle(),
- "I8816STRD2");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_INT8_INT8_INT16_NCHW_NCHW44_S2) {
- checker_conv_bias_int8x8x16(
- get_nchw44_conv_bias_args({2, 3, 5, 7}, ONLY_IDENTITY_NLMODE,
- ONLY_NO_BIASMODE, 2, false, true),
- handle(), "I8816_CONV_NCHW_NCHW44");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_INT8_INT8_INT16_NCHW_NCHW44_S1) {
- checker_conv_bias_int8x8x16(
- get_nchw44_conv_bias_args({2, 3, 5, 7}, ONLY_IDENTITY_NLMODE,
- ONLY_NO_BIASMODE, 1, false, true),
- handle(), "I8816_CONV_NCHW_NCHW44");
- }
-
- /**********************************algo 8-8-32 direct************************/
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_INT8_INT8_INT32_STRIDE1) {
- checker_conv_bias_int8x8x32_multi(
- get_conv_bias_args({2, 3, 5, 7}, 1, false, true, true), handle(),
- "S8STRD1");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_INT8_INT8_INT32_STRIDE2) {
- checker_conv_bias_int8x8x32_multi(
- get_conv_bias_args({2, 3, 5, 7}, 2, false, true, true), handle(),
- "S8STRD2");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS,
- CONV_BIAS_INT8_INT8_INT32_CHANNEL_WISE_DIRECT1_NCHW44) {
- checker_conv_bias_int8x8x32_multi(
- get_nchw44_channel_wise_args({2, 3, 5}, 1, false, true, true),
- handle(), "S8_CHAN_WISE_STRD1_NCHW44");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS,
- CONV_BIAS_INT8_INT8_INT32_CHANNEL_WISE_DIRECT2_NCHW44) {
- checker_conv_bias_int8x8x32_multi(
- get_nchw44_channel_wise_args({2, 3, 5}, 2, false, true, true),
- handle(), "S8_CHAN_WISE_STRD2_NCHW44");
- }
-
- TEST_F(ARM_COMMON, CONV_BIAS_INT8_INT8_INT16_CHANNEL_WISE_DIRECT1_NCHW44) {
- Checker<ConvBias> checker(handle());
- checker.set_before_exec_callback(conv_bias::ConvBiasAlgoChecker<ConvBias>(
- "S8x8x16_CHAN_WISE_STRD1_STRD2_NCHW44"));
- checker.set_dtype(0, dtype::Int8());
- checker.set_dtype(1, dtype::Int8());
- checker.set_dtype(2, dtype::Int16());
- checker.set_dtype(4, dtype::Int16());
- auto args = get_nchw44_channel_wise_args({2, 3, 5}, 1, false, true, true);
- for (auto&& arg : args) {
- checker.set_param(arg.param).execs({arg.src, arg.filter, {}, {}, {}});
- }
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS,
- CONV_BIAS_INT8_INT8_INT16_CHANNEL_WISE_DIRECT2_NCHW44) {
- Checker<ConvBias> checker(handle());
- checker.set_before_exec_callback(conv_bias::ConvBiasAlgoChecker<ConvBias>(
- "S8x8x16_CHAN_WISE_STRD1_STRD2_NCHW44"));
- checker.set_dtype(0, dtype::Int8());
- checker.set_dtype(1, dtype::Int8());
- checker.set_dtype(2, dtype::Int16());
- checker.set_dtype(4, dtype::Int16());
- auto args = get_nchw44_channel_wise_args({2, 3, 5}, 2, false, true, true);
- for (auto&& arg : args) {
- checker.set_param(arg.param).execs({arg.src, arg.filter, {}, {}, {}});
- }
- }
-
- /********************************qint8 direct******************************/
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_INT8_STRIDE1) {
- checker_conv_bias_qint8x8x8(get_int8_quint8_conv_bias_args(
- {2, 3, 5, 7}, 1, false, false, false),
- handle(), "S8STRD1");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_INT8_STRIDE2) {
- checker_conv_bias_qint8x8x8(get_int8_quint8_conv_bias_args(
- {2, 3, 5, 7}, 2, false, false, false),
- handle(), "S8STRD2");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_INT8_STRIDE1_NCHW44) {
- checker_conv_bias_qint8x8x8(
- get_nchw44_conv_bias_args({2, 3, 5, 7}, QUAN_NLMODE,
- ONLY_BR_BIASMODE, 1),
- handle(), "S8_NCHW44_DIRECT");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_INT8_STRIDE1_NCHW44_8816) {
- checker_conv_bias_int8x8x16(
- get_nchw44_conv_bias_args({2, 3, 5, 7}, ONLY_IDENTITY_NLMODE,
- ONLY_BR_BIASMODE, 1),
- handle(), "S8x8x16_NCHW44_DIRECT");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_INT8_STRIDE2_NCHW44_8816) {
- checker_conv_bias_int8x8x16(
- get_nchw44_conv_bias_args({2, 3, 5, 7}, ONLY_IDENTITY_NLMODE,
- ONLY_BR_BIASMODE, 2),
- handle(), "S8x8x16_NCHW44_DIRECT");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_INT8_STRIDE1_NCHW44_8832) {
- checker_conv_bias_qint8x8x32(
- get_nchw44_conv_bias_args({2, 3, 5, 7}, ONLY_IDENTITY_NLMODE,
- ONLY_BR_BIASMODE, 1),
- handle(), "S8_NCHW44_DIRECT");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_INT8_STRIDE2_NCHW44_8832) {
- checker_conv_bias_qint8x8x32(
- get_nchw44_conv_bias_args({2, 3, 5, 7}, ONLY_IDENTITY_NLMODE,
- ONLY_NO_BIASMODE, 2),
- handle(), "S8_NCHW44_DIRECT");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_INT8_STRIDE2_NCHW44) {
- checker_conv_bias_qint8x8x8(
- get_nchw44_conv_bias_args({2, 3, 5, 7}, QUAN_NLMODE,
- BR_AND_NO_BIASMODE, 2),
- handle(), "S8_NCHW44_DIRECT");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_QS8_CHANNEL_WISE_DIRECT1_NCHW44) {
- checker_conv_bias_qint8x8x8(
- get_nchw44_conv_bias_args({2, 3, 5, 7}, ONLY_IDENTITY_NLMODE,
- BR_AND_NO_BIASMODE, 1),
- handle(), "S8_NCHW44_DIRECT");
- checker_conv_bias_qint8x8x8(
- get_nchw44_channel_wise_args({2, 3, 5}, 1, false, false, true),
- handle(), "S8_CHAN_WISE_STRD1_NCHW44");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_QS8_CHANNEL_WISE_DIRECT2_NCHW44) {
- checker_conv_bias_qint8x8x8(
- get_nchw44_channel_wise_args({2, 3, 5}, 2, false, false, true),
- handle(), "S8_CHAN_WISE_STRD2_NCHW44");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_INT8_NCHW_NCHW44_S1) {
- checker_conv_bias_qint8x8x8(
- get_nchw44_conv_bias_args({2, 3, 5, 7}, QUAN_NLMODE,
- BR_AND_NO_BIASMODE, 1, false, true),
- handle(), "S8_CONV_NCHW_NCHW44");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_INT8_NCHW_NCHW44_S2) {
- checker_conv_bias_qint8x8x8(
- get_nchw44_conv_bias_args({2, 3, 5, 7}, QUAN_NLMODE,
- BR_AND_NO_BIASMODE, 2, false, true),
- handle(), "S8_CONV_NCHW_NCHW44");
- }
-
- /*****************************quint8 direct****************************/
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_QUINT8_STRIDE1) {
- checker_conv_bias_quint8x8x8(get_int8_quint8_conv_bias_args(
- {2, 3, 5, 7}, 1, false, false, false),
- handle(), "QU8STRD1");
- }
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_QUINT8_STRIDE2) {
- checker_conv_bias_quint8x8x8(get_int8_quint8_conv_bias_args(
- {2, 3, 5, 7}, 2, false, false, false),
- handle(), "QU8STRD2");
- }
-
- /****************************dot qint8 direct*************************/
- #if MGB_ENABLE_DOT
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_DOT_NCHW_NCHW44) {
- auto args = get_nchw44_conv_bias_args({2, 3, 5, 7}, QUAN_NLMODE,
- BR_AND_NO_BIASMODE, 2, false, true);
- for (auto&& arg : args) {
- arg.param.format = param::ConvBias::Format::NCHW44_DOT;
- }
- checker_conv_bias_qint8x8x8(args, handle(), "ARMDOTS8_NCHW_NCHW44");
-
- args = get_nchw44_conv_bias_args({2, 3, 5, 7}, QUAN_NLMODE,
- BR_AND_NO_BIASMODE, 1, false, true);
- for (auto&& arg : args) {
- arg.param.format = param::ConvBias::Format::NCHW44_DOT;
- }
- checker_conv_bias_qint8x8x8(args, handle(), "ARMDOTS8_NCHW_NCHW44");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_INT8_STRIDE1_WITHDOTPROD) {
- checker_conv_bias_qint8x8x8(get_int8_quint8_conv_bias_args(
- {2, 3, 5, 7}, 1, false, false, false),
- handle(), "ARMDOTS8STRD1");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_INT8_STRIDE2_WITHDOTPROD) {
- checker_conv_bias_qint8x8x8(get_int8_quint8_conv_bias_args(
- {2, 3, 5, 7}, 2, false, false, false),
- handle(), "ARMDOTS8STRD2");
- }
-
- /****************************dot 8-8-32 direct*************************/
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_I8832STRD1_WITHDOT) {
- checker_conv_bias_qint8x8x32(
- get_conv_bias_args({2, 3, 5, 7}, 1, false, true, true), handle(),
- "ARMDOTS8STRD1");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_I8832STRD2_WITHDOT) {
- checker_conv_bias_qint8x8x32(
- get_conv_bias_args({2, 3, 5, 7}, 2, false, true, true), handle(),
- "ARMDOTS8STRD2");
- }
-
- /******************************dot quint8*****************************/
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_QUINT8_STRIDE1_WITHDOTPROD) {
- checker_conv_bias_quint8x8x8(get_int8_quint8_conv_bias_args(
- {2, 3, 5, 7}, 1, false, false, false),
- handle(), "ARMDOTU8STRD1");
- }
- //! TODO: this test without test kernel size=3, add it will case buss error now
- //! in armv7
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_QUINT8_STRIDE2_WITHDOTPROD) {
- checker_conv_bias_quint8x8x8(
- get_int8_quint8_conv_bias_args({2, 5, 7}, 2, false, false, false),
- handle(), "ARMDOTU8STRD2");
- }
-
- /******************************dot quint8x8x32***********************/
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_QUINT8_DIRECT_STRIDE1) {
- checker_conv_bias_quint8x8x32(
- get_conv_bias_args({2, 3, 5, 7}, 1, false, true, true), handle(),
- "ARMDOTU8STRD1");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_QUINT8_DIRECT_STRIDE2) {
- checker_conv_bias_quint8x8x32(
- get_conv_bias_args({2, 3, 5, 7}, 2, false, true, true), handle(),
- "ARMDOTU8STRD2");
- }
-
- /******************************dot int8x8x8 nchw44 ***********************/
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_INT8_DIRECT_DOT_NCHW44_S1_Q8x8x8) {
- using namespace conv_bias;
- std::vector<TestArg> args = get_nchw44_conv_bias_args(
- {2, 3, 5, 7}, QUAN_NLMODE, ONLY_BR_BIASMODE, 1);
- for (auto&& arg : args)
- arg.param.format = param::ConvBias::Format::NCHW44_DOT;
- checker_conv_bias_qint8x8x8(args, handle(), "ARMDOTS8DIRECT_NCHW44");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_INT8_DIRECT_DOT_NCHW44_S1_Q8x8x32) {
- using namespace conv_bias;
- std::vector<TestArg> args = get_nchw44_conv_bias_args(
- {2, 3, 5, 7}, ONLY_IDENTITY_NLMODE, BR_AND_NO_BIASMODE, 1);
- for (auto&& arg : args)
- arg.param.format = param::ConvBias::Format::NCHW44_DOT;
- checker_conv_bias_qint8x8x32(args, handle(), "ARMDOTS8DIRECT_NCHW44");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_INT8_DIRECT_DOT_NCHW44_S1_8x8x32) {
- using namespace conv_bias;
- std::vector<TestArg> args = get_nchw44_conv_bias_args(
- {2, 3, 5, 7}, ONLY_IDENTITY_NLMODE, BR_AND_NO_BIASMODE, 1);
- for (auto&& arg : args)
- arg.param.format = param::ConvBias::Format::NCHW44_DOT;
- checker_conv_bias_int8x8x32_multi(args, handle(), "ARMDOTS8DIRECT_NCHW44");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_INT8_DIRECT_DOT_NCHW44_S2_Q8x8x8) {
- using namespace conv_bias;
- //! test qint8x8x8
- std::vector<TestArg> args = get_nchw44_conv_bias_args(
- {2, 3, 5, 7}, QUAN_NLMODE, BR_AND_NO_BIASMODE, 2);
- for (auto&& arg : args)
- arg.param.format = param::ConvBias::Format::NCHW44_DOT;
- checker_conv_bias_qint8x8x8(args, handle(), "ARMDOTS8DIRECT_NCHW44");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_INT8_DIRECT_DOT_NCHW44_S2_Q8x8x32) {
- using namespace conv_bias;
- //! test qint8x8x8
- std::vector<TestArg> args = get_nchw44_conv_bias_args(
- {2, 3, 5, 7}, ONLY_IDENTITY_NLMODE, BR_AND_NO_BIASMODE, 2);
- for (auto&& arg : args)
- arg.param.format = param::ConvBias::Format::NCHW44_DOT;
- checker_conv_bias_qint8x8x32(args, handle(), "ARMDOTS8DIRECT_NCHW44");
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONVBIAS_INT8_DIRECT_DOT_NCHW44_S2_8x8x32) {
- using namespace conv_bias;
- //! test qint8x8x8
- std::vector<TestArg> args = get_nchw44_conv_bias_args(
- {2, 3, 5, 7}, ONLY_IDENTITY_NLMODE, BR_AND_NO_BIASMODE, 2);
- for (auto&& arg : args)
- arg.param.format = param::ConvBias::Format::NCHW44_DOT;
- checker_conv_bias_int8x8x32_multi(args, handle(), "ARMDOTS8DIRECT_NCHW44");
- }
-
- #endif
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD) {
- using namespace conv_bias;
- std::vector<TestArg> args = get_winograd_args(3);
-
- Checker<ConvBiasForward> checker(handle());
-
- auto run = [&checker](const std::vector<TestArg>& args, DType A_dtype,
- DType B_dtype, DType C_dtype, DType D_dtype,
- const float eps) {
- for (auto&& arg : args) {
- checker.set_dtype(0, A_dtype)
- .set_dtype(1, B_dtype)
- .set_dtype(2, C_dtype)
- .set_dtype(4, D_dtype)
- .set_epsilon(eps)
- .set_param(arg.param)
- .execs({arg.src, arg.filter, arg.bias, {}, {}});
- }
- };
- run(args, dtype::Float32(), dtype::Float32(), dtype::Float32(),
- dtype::Float32(), 1e-3f);
- #if __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
- Float16PeriodicalRNG* rng = new Float16PeriodicalRNG(0x3c00);
- checker.set_rng(0, rng).set_rng(1, rng).set_rng(2, rng);
- run(args, dtype::Float16(), dtype::Float16(), dtype::Float16(),
- dtype::Float16(), 0.35f);
- #endif
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_F23_4) {
- using namespace conv_bias;
- std::vector<TestArg> args = get_winograd_mk_packed_args();
- Checker<ConvBiasForward> checker(handle());
-
- check_winograd("4:2:32", checker, args, param::MatrixMul::Format::MK4);
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_F23_4_NCHW44) {
- using namespace conv_bias;
- std::vector<TestArg> args =
- get_nchw44_conv_bias_args({3}, QUAN_NLMODE, BR_AND_NO_BIASMODE, 1);
- Checker<ConvBiasForward> checker(handle());
- check_winograd("4:2:32", checker, args, param::MatrixMul::Format::MK4,
- param::ConvBias::Format::NCHW44);
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_F63) {
- using namespace conv_bias;
- std::vector<TestArg> args = get_winograd_args(3);
- Checker<ConvBiasForward> checker(handle());
-
- check_winograd("1:6:32", checker, args);
- }
-
-
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_F63_4) {
- using namespace conv_bias;
- std::vector<TestArg> args = get_winograd_mk_packed_args();
- Checker<ConvBiasForward> checker(handle());
-
- check_winograd("4:6:16", checker, args, param::MatrixMul::Format::MK4);
- }
-
-
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_F63_4_NCHW44) {
- using namespace conv_bias;
- std::vector<TestArg> args =
- get_nchw44_conv_bias_args({3},QUAN_NLMODE,BR_AND_NO_BIASMODE,1);
- Checker<ConvBiasForward> checker(handle());
- check_winograd("4:6:16", checker, args, param::MatrixMul::Format::MK4,
- param::ConvBias::Format::NCHW44);
- }
-
-
-
- //! uncomment it when low precision mode is ok
- #if 0
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_F73_4_NCHW44) {
- using namespace conv_bias;
- std::vector<TestArg> args =
- get_nchw44_conv_bias_args({3},QUAN_NLMODE,BR_AND_NO_BIASMODE,1);
- Checker<ConvBiasForward> checker(handle());
- check_winograd("4:7:16", checker, args, param::MatrixMul::Format::MK4,
- param::ConvBias::Format::NCHW44);
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_F73_4_NCHW44_WEIGHT_PREPROCESS) {
- using namespace conv_bias;
- std::vector<TestArg> args =
- get_nchw44_conv_bias_args({3},QUAN_NLMODE,BR_AND_NO_BIASMODE,1);
- Checker<ConvBiasForward, OprWeightPreprocessProxy<ConvBiasForward>> checker(
- handle());
- check_winograd("4:7:16", checker, args, param::MatrixMul::Format::MK4,
- param::ConvBias::Format::NCHW44);
- }
- #endif
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_F54) {
- using namespace conv_bias;
- std::vector<TestArg> args = get_winograd_args(4);
- Checker<ConvBiasForward> checker(handle());
-
- check_winograd("1:5:32", checker, args);
- }
-
-
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_F45) {
- using namespace conv_bias;
- std::vector<TestArg> args = get_winograd_args(5);
- Checker<ConvBiasForward> checker(handle());
-
- check_winograd("1:4:32", checker, args);
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_MK_PACKED_F32_1) {
- using namespace conv_bias;
-
- Checker<ConvBiasForward> checker(handle());
- auto run = [&checker](const std::vector<TestArg>& args, DType A_dtype,
- DType B_dtype, DType C_dtype, DType D_dtype,
- float eps) {
- for (auto&& arg : args) {
- checker.set_dtype(0, A_dtype)
- .set_dtype(1, B_dtype)
- .set_dtype(2, C_dtype)
- .set_dtype(4, D_dtype)
- .set_epsilon(eps)
- .set_param(arg.param)
- .execs({arg.src, arg.filter, arg.bias, {}, {}});
- }
- };
- std::vector<TestArg> args = get_winograd_mk_packed_args(8);
- std::vector<TestArg> args_first_half(args.begin(),
- args.begin() + args.size() / 2);
- run(args_first_half, dtype::Float32{}, dtype::Float32{}, dtype::Float32{},
- dtype::Float32{}, 1e-3f);
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_MK_PACKED_F32_2) {
- using namespace conv_bias;
-
- Checker<ConvBiasForward> checker(handle());
- auto run = [&checker](const std::vector<TestArg>& args, DType A_dtype,
- DType B_dtype, DType C_dtype, DType D_dtype,
- float eps) {
- for (auto&& arg : args) {
- checker.set_dtype(0, A_dtype)
- .set_dtype(1, B_dtype)
- .set_dtype(2, C_dtype)
- .set_dtype(4, D_dtype)
- .set_epsilon(eps)
- .set_param(arg.param)
- .execs({arg.src, arg.filter, arg.bias, {}, {}});
- }
- };
- std::vector<TestArg> args = get_winograd_mk_packed_args(8);
- std::vector<TestArg> args_second_half(args.begin() + args.size() / 2,
- args.end());
- run(args_second_half, dtype::Float32{}, dtype::Float32{}, dtype::Float32{},
- dtype::Float32{}, 1e-3f);
- }
-
- #if __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_MK_PACKED_F16) {
- using namespace conv_bias;
-
- Checker<ConvBiasForward> checker(handle());
- auto run = [&checker](const std::vector<TestArg>& args, DType A_dtype,
- DType B_dtype, DType C_dtype, DType D_dtype,
- float eps) {
- for (auto&& arg : args) {
- checker.set_dtype(0, A_dtype)
- .set_dtype(1, B_dtype)
- .set_dtype(2, C_dtype)
- .set_dtype(4, D_dtype)
- .set_epsilon(eps)
- .set_param(arg.param)
- .execs({arg.src, arg.filter, arg.bias, {}, {}});
- }
- };
-
- std::vector<TestArg> args = get_winograd_mk_packed_args(8);
- Float16PeriodicalRNG* rng = new Float16PeriodicalRNG(0x3c00);
- checker.set_rng(0, rng).set_rng(1, rng).set_rng(2, rng);
- run(args, dtype::Float16{}, dtype::Float16{}, dtype::Float16{},
- dtype::Float16{}, 0.25);
- }
-
- #endif
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_MK_PACKED_INT8) {
- using namespace conv_bias;
-
- Checker<ConvBiasForward> checker(handle());
- auto run = [&checker](const std::vector<TestArg>& args, DType A_dtype,
- DType B_dtype, DType C_dtype, DType D_dtype,
- float eps) {
- for (auto&& arg : args) {
- checker.set_dtype(0, A_dtype)
- .set_dtype(1, B_dtype)
- .set_dtype(2, C_dtype)
- .set_dtype(4, D_dtype)
- .set_epsilon(eps)
- .set_param(arg.param)
- .execs({arg.src, arg.filter, arg.bias, {}, {}});
- }
- };
-
- #if MEGDNN_AARCH64
- const char* matmul_name = "AARCH64_INT16X16X32_MK8_8X8";
- #else
- const char* matmul_name = "ARMV7_INT16X16X32_MK8_4X8";
- #endif
- checker.set_before_exec_callback(conv_bias::ConvBiasAlgoChecker<ConvBias>(
- ssprintf("WINOGRAD:%s:8:2:32", matmul_name).c_str()));
-
- std::vector<TestArg> quantized_args =
- get_quantized_winograd_mk_packed_args(8);
- UniformIntRNG int_rng{-50, 50};
- checker.set_rng(0, &int_rng).set_rng(1, &int_rng).set_rng(2, &int_rng);
- run(quantized_args, dtype::QuantizedS8(2.5f), dtype::QuantizedS8(2.5f),
- dtype::QuantizedS32(6.25f), dtype::QuantizedS8(60.25f), 1e-3);
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_NCHW44_MK_PACKED_INT8) {
- using namespace conv_bias;
-
- Checker<ConvBiasForward> checker(handle());
- auto run = [&checker](const std::vector<TestArg>& args,
- DType A_dtype,
- DType B_dtype, DType C_dtype, DType D_dtype,
- float eps) {
- for (auto&& arg : args) {
- checker.set_dtype(0, A_dtype)
- .set_dtype(1, B_dtype)
- .set_dtype(2, C_dtype)
- .set_dtype(4, D_dtype)
- .set_epsilon(eps)
- .set_param(arg.param)
- .execs({arg.src, arg.filter, arg.bias, {}, {}});
- }
- };
-
- #if MEGDNN_AARCH64
- const char* matmul_name = "AARCH64_INT16X16X32_MK8_8X8";
- #else
- const char* matmul_name = "ARMV7_INT16X16X32_MK8_4X8";
- #endif
- checker.set_before_exec_callback(conv_bias::ConvBiasAlgoChecker<ConvBias>(
- ssprintf("WINOGRAD_NCHW44:%s:8:2:32", matmul_name).c_str()));
-
- std::vector<TestArg> quantized_args = get_int8_nchw44_args(3, 4);
- UniformIntRNG int_rng{-50, 50};
- checker.set_rng(0, &int_rng).set_rng(1, &int_rng).set_rng(2, &int_rng);
- run(quantized_args, dtype::QuantizedS8(2.5f),
- dtype::QuantizedS8(2.5f), dtype::QuantizedS32(6.25f),
- dtype::QuantizedS8(60.25f),1e-3);
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS,
- CONV_BIAS_WINOGRAD_NCHW44_MK_PACKED_INT8_COMP_F32_GROUPMODE) {
- using namespace conv_bias;
-
- Checker<ConvBiasForward> checker(handle());
- auto run = [&checker](const std::vector<TestArg>& args, DType A_dtype,
- DType B_dtype, DType C_dtype, DType D_dtype,
- float eps) {
- for (auto&& arg : args) {
- checker.set_dtype(0, A_dtype)
- .set_dtype(1, B_dtype)
- .set_dtype(2, C_dtype)
- .set_dtype(4, D_dtype)
- .set_epsilon(eps)
- .set_param(arg.param)
- .execs({arg.src, arg.filter, arg.bias, {}, {}});
- }
- };
-
- float epsilon = 0.001;
- #if MEGDNN_AARCH64
- const char* matmul_name = "AARCH64_F32_MK4_4x16";
- #else
- const char* matmul_name = "ARMV7_F32_MK4_4x8";
- #endif
- checker.set_before_exec_callback(conv_bias::ConvBiasAlgoChecker<ConvBias>(
- ssprintf("WINOGRAD_NCHW44:%s:4:2:32", matmul_name).c_str()));
- std::vector<TestArg> quantized_args =
- get_int8_nchw44_args(3, 4, true, true);
- UniformIntRNG int_rng{-50, 50};
- checker.set_rng(0, &int_rng).set_rng(1, &int_rng).set_rng(2, &int_rng);
- run(quantized_args, dtype::QuantizedS8(0.41113496f),
- dtype::QuantizedS8(0.01887994f),
- dtype::QuantizedS32(0.41113496f * 0.01887994f),
- dtype::QuantizedS8(0.49550694f), epsilon);
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS,
- CONV_BIAS_WINOGRAD_NCHW44_MK_PACKED_INT8_GROUPMODE) {
- using namespace conv_bias;
-
- Checker<ConvBiasForward> checker(handle());
- auto run = [&checker](const std::vector<TestArg>& args, DType A_dtype,
- DType B_dtype, DType C_dtype, DType D_dtype,
- float eps) {
- for (auto&& arg : args) {
- checker.set_dtype(0, A_dtype)
- .set_dtype(1, B_dtype)
- .set_dtype(2, C_dtype)
- .set_dtype(4, D_dtype)
- .set_epsilon(eps)
- .set_param(arg.param)
- .execs({arg.src, arg.filter, arg.bias, {}, {}});
- }
- };
-
- #if MEGDNN_AARCH64
- const char* matmul_name = "AARCH64_INT16X16X32_MK8_8X8";
- #else
- const char* matmul_name = "ARMV7_INT16X16X32_MK8_4X8";
- #endif
- checker.set_before_exec_callback(conv_bias::ConvBiasAlgoChecker<ConvBias>(
- ssprintf("WINOGRAD_NCHW44:%s:8:2:32", matmul_name).c_str()));
-
- std::vector<TestArg> quantized_args =
- get_int8_nchw44_args(3, 4, false, true);
- UniformIntRNG int_rng{-50, 50};
- checker.set_rng(0, &int_rng).set_rng(1, &int_rng).set_rng(2, &int_rng);
- run(quantized_args, dtype::QuantizedS8(2.5f), dtype::QuantizedS8(2.5f),
- dtype::QuantizedS32(6.25f), dtype::QuantizedS8(60.25f), 1e-3);
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS,
- CONV_BIAS_WINOGRAD_NCHW44_MK_PACKED_INT8_COMP_F32) {
- using namespace conv_bias;
-
- Checker<ConvBiasForward> checker(handle());
- auto run = [&checker](const std::vector<TestArg>& args, DType A_dtype,
- DType B_dtype, DType C_dtype, DType D_dtype,
- float eps) {
- for (auto&& arg : args) {
- checker.set_dtype(0, A_dtype)
- .set_dtype(1, B_dtype)
- .set_dtype(2, C_dtype)
- .set_dtype(4, D_dtype)
- .set_epsilon(eps)
- .set_param(arg.param)
- .execs({arg.src, arg.filter, arg.bias, {}, {}});
- }
- };
-
- float epsilon = 0.001;
- #if MEGDNN_AARCH64
- const char* matmul_name = "AARCH64_F32_MK4_4x16";
- #else
- const char* matmul_name = "ARMV7_F32_MK4_4x8";
- #endif
- checker.set_before_exec_callback(conv_bias::ConvBiasAlgoChecker<ConvBias>(
- ssprintf("WINOGRAD_NCHW44:%s:4:2:32", matmul_name).c_str()));
- std::vector<TestArg> quantized_args = get_int8_nchw44_args(3, 4, true);
- UniformIntRNG int_rng{-50, 50};
- checker.set_rng(0, &int_rng).set_rng(1, &int_rng).set_rng(2, &int_rng);
- run(quantized_args, dtype::QuantizedS8(0.41113496f),
- dtype::QuantizedS8(0.01887994f),
- dtype::QuantizedS32(0.41113496f * 0.01887994f),
- dtype::QuantizedS8(0.49550694f), epsilon);
- }
-
- #if __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_F16_F23) {
- using namespace conv_bias;
- std::vector<TestArg> args = get_winograd_mk_packed_args();
- Checker<ConvBiasForward> checker(handle());
- check_winograd_fp16("1:2:32", checker, args, NULL, 0.08);
- }
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_F16_F45_1) {
- using namespace conv_bias;
- std::vector<TestArg> args = get_winograd_args(5);
- std::vector<TestArg> args_head_half(args.begin(),
- args.begin() + args.size() / 2);
- Checker<ConvBiasForward> checker(handle());
- //! fp16 range -1.0 ~ 1.0
- Float16PeriodicalRNG* rng = new Float16PeriodicalRNG(0x3c00);
- check_winograd_fp16("1:4:32", checker, args_head_half, rng, 0.25);
- }
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_F16_F45_2) {
- using namespace conv_bias;
- std::vector<TestArg> args = get_winograd_args(5);
- std::vector<TestArg> args_back_half(args.begin() + args.size() / 2,
- args.end());
- Checker<ConvBiasForward> checker(handle());
- //! fp16 range -1.0 ~ 1.0
- Float16PeriodicalRNG* rng = new Float16PeriodicalRNG(0x3c00);
- check_winograd_fp16("1:4:32", checker, args_back_half, rng, 0.25);
- }
- //! FIXME: This test may be failed if run `ARM_COMMON.CONV_BIAS_WINOGRAD*`, but
- //! it will pass when run single testcase
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_F16_F63) {
- using namespace conv_bias;
- std::vector<TestArg> args = get_winograd_args(3);
- Checker<ConvBiasForward> checker(handle());
- //! fp16 range -1.0 ~ 1.0
- Float16PeriodicalRNG* rng = new Float16PeriodicalRNG(0x3c00);
- check_winograd_fp16("1:6:32", checker, args, rng, 0.3);
- }
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_F16_8x8_1) {
- using namespace conv_bias;
- std::vector<TestArg> args = get_winograd_mk_packed_args(8);
- std::vector<TestArg> args_head_half(args.begin(),
- args.begin() + args.size() / 2);
- Checker<ConvBiasForward> checker(handle());
- Float16PeriodicalRNG* rng = new Float16PeriodicalRNG(0x3c00);
- check_winograd_fp16("8:2:32", checker, args_head_half, rng, 0.25,
- param::MatrixMul::Format::MK8);
- }
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_F16_8x8_2) {
- using namespace conv_bias;
- std::vector<TestArg> args = get_winograd_mk_packed_args(8);
- std::vector<TestArg> args_back_half(args.begin() + args.size() / 2,
- args.end());
- Checker<ConvBiasForward> checker(handle());
- Float16PeriodicalRNG* rng = new Float16PeriodicalRNG(0x3c00);
- check_winograd_fp16("8:2:32", checker, args_back_half, rng, 0.25,
- param::MatrixMul::Format::MK8);
- }
- #endif
- TEST_F(ARM_COMMON_MULTI_THREADS, CONV_BIAS_WINOGRAD_INT8_8X8) {
- using namespace conv_bias;
- std::vector<TestArg> args = get_quantized_winograd_mk_packed_args(8);
- Checker<ConvBiasForward> checker(handle());
- UniformIntRNG rng{-50, 50};
- checker.set_dtype(0, dtype::QuantizedS8(2.5f))
- .set_dtype(1, dtype::QuantizedS8(2.5f))
- .set_dtype(2, dtype::QuantizedS32(6.25f))
- .set_dtype(4, dtype::QuantizedS8(60.25f))
- .set_rng(0, &rng)
- .set_rng(1, &rng)
- .set_rng(2, &rng);
-
- check_winograd("8:2:32", checker, args, param::MatrixMul::Format::MK8);
- }
-
- TEST_F(ARM_COMMON_MULTI_THREADS,
- CONV_BIAS_WINOGRAD_INT8_8X8_WEIGHT_PREPROCESS) {
- using namespace conv_bias;
- std::vector<TestArg> args = get_quantized_winograd_mk_packed_args(8);
- Checker<ConvBiasForward, OprWeightPreprocessProxy<ConvBiasForward>> checker(
- handle());
- UniformIntRNG rng{-50, 50};
- checker.set_dtype(0, dtype::QuantizedS8(2.5f))
- .set_dtype(1, dtype::QuantizedS8(2.5f))
- .set_dtype(2, dtype::QuantizedS32(6.25f))
- .set_dtype(4, dtype::QuantizedS8(60.25f))
- .set_rng(0, &rng)
- .set_rng(1, &rng)
- .set_rng(2, &rng);
-
- check_winograd("8:2:32", checker, args, param::MatrixMul::Format::MK8);
- }
-
- // clang-format on
- // vim: syntax=cpp.doxygen
|