|
- /**
- * \file dnn/test/common/conv_bias.h
- * 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.
- */
- #pragma once
- #include "megdnn/basic_types.h"
- #include "megdnn/opr_param_defs.h"
- #include "test/common/checker.h"
-
- #include "src/fallback/conv_bias/opr_impl.h"
-
- #include <regex>
-
- namespace megdnn {
-
- namespace test {
- namespace conv_bias {
-
- struct TestArg {
- param::ConvBias param;
- TensorShape src, filter, bias;
- TestArg(param::ConvBias param, TensorShape src, TensorShape filter,
- TensorShape bias)
- : param(param), src(src), filter(filter), bias(bias) {}
- };
-
- std::vector<TestArg> get_args();
- std::vector<TestArg> get_args_1x1();
- std::vector<TestArg> get_chanwise_args();
- std::vector<TestArg> get_winograd_args(size_t kernel_size);
- std::vector<TestArg> get_winograd_mk_packed_args(size_t pack_size = 4);
- std::vector<TestArg> get_quantized_winograd_mk_packed_args(
- size_t pack_size = 4, bool compute_float32 = false);
- std::vector<TestArg> get_quantized_args_with_nlmode(
- param::ConvBias::NonlineMode nlmode);
- std::vector<TestArg> get_quantized_args();
- std::vector<TestArg> get_int8_nchw4_args(size_t kernel_size);
- std::vector<TestArg> get_int8_nchw4_args_check_bounds(size_t kernel_size);
- std::vector<TestArg> get_int8_nchw4_small_channel_args(size_t kernel_size);
- std::vector<TestArg> get_int8_nchw4_small_channel_args_check_bounds(
- size_t kernel_size);
- std::vector<TestArg> get_int8_nchw4_args_small_batch(size_t kernel_size);
- std::vector<TestArg> get_int8_chwn4_args(size_t kernel_size);
- std::vector<TestArg> get_int8_chwn4_args_check_bounds(size_t kernel_size);
- std::vector<TestArg> get_int8_chwn4_small_channel_args(size_t kernel_size);
- std::vector<TestArg> get_int8_chwn4_small_channel_args_check_bounds(
- size_t kernel_size);
- std::vector<TestArg> get_int8_chwn4_args_small_batch(size_t kernel_size);
- std::vector<TestArg> get_int8_nchw4_tensorcore_args(size_t kernel_size);
- std::vector<TestArg> get_int8_chwn4_tensorcore_args(size_t kernel_size);
-
- std::vector<TestArg> get_int8_nchw44_args(size_t kernel_size, size_t pack_size,
- bool compute_float32 = false,
- bool group_mode = false);
- void check_conv_bias_preprocess(std::vector<conv_bias::TestArg> args,
- Handle* handle, RNG* rng, float epsilon,
- DType type0, DType type1, DType type2,
- DType type3, const char* algo_name);
- template <typename Opr>
- using ConvBiasAlgoChecker = AlgoChecker<Opr>;
-
- void check_conv_bias(
- DType src_dtype, DType filter_dtype, DType bias_dtype, DType dst_dtype,
- Handle* handle, const char* algo = nullptr,
- param::ConvBias::Format format = param::ConvBias::Format::NCHW4,
- const std::vector<TestArg>& args = {}, bool fuse_z = false, bool stable_test = false);
-
- #if MEGDNN_WITH_BENCHMARK
- std::vector<conv_bias::TestArg> get_winograd_benchmark_args(
- size_t kernel, size_t pack_size = 1);
- void benchmark_winograd(const char* algo_name, megdnn::Handle* handle,
- size_t kernel, size_t pack_size = 1);
- #endif // MEGDNN_WITH_BENCHMARK
-
- std::vector<megdnn::test::conv_bias::TestArg> get_conv_bias_args(
- std::vector<size_t> kernel, size_t stride, bool no_pad, bool no_bias,
- bool no_nonlinemode, bool quantized_nlmod = false,
- bool only_broadcast_bias = false);
-
- std::vector<megdnn::test::conv_bias::TestArg> get_conv_bias_1x1_args(
- bool no_bias, bool no_nonlinemode, bool quantized_nlmod = false,
- bool only_broadcast_bias = false);
-
- void check_conv_bias(std::vector<megdnn::test::conv_bias::TestArg> args,
- megdnn::Handle* handle, const char* algo_name);
-
- void checker_conv_bias_int8x8x16(
- std::vector<megdnn::test::conv_bias::TestArg> args,
- megdnn::Handle* handle, const char* algo_name);
- void checker_conv_bias_common(std::vector<conv_bias::TestArg> args,
- Handle* handle, RNG* rng, float epsilon,
- DType type0, DType type1, DType type2,
- DType type3, const char* algo_name);
- std::vector<conv_bias::TestArg> get_nchw44_conv_bias_args(
- std::vector<size_t> kernel_vec,
- std::vector<param::ConvBias::NonlineMode> nlmode_vec,
- std::vector<megdnn::BiasMode> biasmode_vec, size_t stride,
- bool no_pad = false, bool is_input_nchw = false,
- bool is_nchw44_dot = false);
- void checker_conv_bias_mul_int8x8x32(std::vector<conv_bias::TestArg> args,
- Handle* handle, const char* algo_name);
- void checker_conv_bias_int8x8x32_preprocess(
- std::vector<conv_bias::TestArg> args, Handle* handle,
- const char* algo_name);
-
- #define FULL_NLMODE \
- { \
- param::ConvBias::NonlineMode::IDENTITY, \
- param::ConvBias::NonlineMode::RELU, \
- param::ConvBias::NonlineMode::H_SWISH, \
- param::ConvBias::NonlineMode::SIGMOID \
- }
- #define QUAN_NLMODE \
- { \
- param::ConvBias::NonlineMode::IDENTITY, \
- param::ConvBias::NonlineMode::RELU, \
- param::ConvBias::NonlineMode::H_SWISH \
- }
- #define ONLY_IDENTITY_NLMODE \
- { param::ConvBias::NonlineMode::IDENTITY }
-
- #define ALL_BIASMODE \
- { \
- megdnn::BiasMode::NO_BIAS, megdnn::BiasMode::BROADCAST_CHANNEL_BIAS, \
- megdnn::BiasMode::BIAS \
- }
- #define BR_AND_NO_BIASMODE \
- { megdnn::BiasMode::NO_BIAS, megdnn::BiasMode::BROADCAST_CHANNEL_BIAS }
- #define BR_AND_BIAS_BIASMODE \
- { megdnn::BiasMode::NO_BIAS, megdnn::BiasMode::BIAS }
- #define ONLY_BR_BIASMODE \
- { megdnn::BiasMode::BROADCAST_CHANNEL_BIAS }
- #define ONLY_NO_BIASMODE \
- { megdnn::BiasMode::NO_BIAS }
- #define ONLY_BIAS_BIASMODE \
- { megdnn::BiasMode::BIAS }
- } // namespace conv_bias
- } // namespace test
- } // namespace megdnn
-
- // vim: syntax=cpp.doxygen
|