|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109 |
- /**
- * \file dnn/test/cuda/conv_bias_int8.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/oprs/nn.h"
-
- #include "src/common/utils.h"
- #include "src/cuda/cudnn_with_check.h"
- #include "test/common/checker.h"
- #include "test/common/conv_bias.h"
- #include "test/cuda/benchmark.h"
- #include "test/cuda/fixture.h"
- #include "test/cuda/utils.h"
- #include "test/common/tensor.h"
- #include "test/common/workspace_wrapper.h"
- #include "test/cuda/conv_test_utils.h"
-
-
-
- namespace megdnn {
- namespace test {
- namespace conv{
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_CUDNN_CONVOLUTION) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "DEFAULT:CUDNN:ConvBiasActivation:",
- param::ConvBias::Format::NCHW4);
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_1x1) {
- require_compute_capability(6, 1);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_NCHW4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::NCHW4, conv_bias::get_int8_nchw4_args(1));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_3x3) {
- require_compute_capability(6, 1);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_NCHW4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::NCHW4);
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_5x5) {
- require_compute_capability(6, 1);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_NCHW4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::NCHW4, conv_bias::get_int8_nchw4_args(5));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_7x7) {
- require_compute_capability(6, 1);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_NCHW4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::NCHW4, conv_bias::get_int8_nchw4_args(7));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_WITH_Z) {
- require_compute_capability(6, 1);
- Checker<ConvBiasForward> checker(handle_cuda());
- checker.set_before_exec_callback(
- conv_bias::ConvBiasAlgoChecker<ConvBiasForward>(
- "INT8_NCHW4_DOTPROD_IMPLICIT_GEMM"));
- UniformIntRNG rng{-3, 3};
- UniformIntRNG bias_rng{-50, 50};
- checker.set_rng(0, &rng)
- .set_rng(1, &rng)
- .set_rng(2, &bias_rng)
- .set_rng(3, &rng)
- .set_dtype(0, dtype::QuantizedS8{1.2f})
- .set_dtype(1, dtype::QuantizedS8{1.3f})
- .set_dtype(2, dtype::QuantizedS32{1.2f * 1.3f})
- .set_dtype(3, dtype::QuantizedS8{1.1f})
- .set_dtype(4, dtype::QuantizedS8{1.0f})
- .set_epsilon(1 + 1e-3)
- .set_max_avg_error(1e-1)
- .set_max_avg_biased_error(1e-1);
- param::ConvBias param;
- param.pad_h = param.pad_w = 1;
- param.stride_h = param.stride_w = 1;
- param.format = param::ConvBias::Format::NCHW4;
- checker.set_param(param).execs({{32, 4, 12, 12, 4},
- {16, 4, 3, 3, 4},
- {1, 4, 1, 1, 4},
- {32, 4, 12, 12, 4},
- {}});
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_STRIDE2_WITH_Z) {
- require_compute_capability(6, 1);
- Checker<ConvBiasForward> checker(handle_cuda());
- checker.set_before_exec_callback(
- conv_bias::ConvBiasAlgoChecker<ConvBiasForward>(
- "INT8_NCHW4_DOTPROD_IMPLICIT_GEMM"));
- UniformIntRNG rng{-3, 3};
- UniformIntRNG bias_rng{-50, 50};
- checker.set_rng(0, &rng)
- .set_rng(1, &rng)
- .set_rng(2, &bias_rng)
- .set_rng(3, &rng)
- .set_dtype(0, dtype::QuantizedS8{1.2f})
- .set_dtype(1, dtype::QuantizedS8{1.3f})
- .set_dtype(2, dtype::QuantizedS32{1.2f * 1.3f})
- .set_dtype(3, dtype::QuantizedS8{1.1f})
- .set_dtype(4, dtype::QuantizedS8{1.0f})
- .set_epsilon(1 + 1e-3)
- .set_max_avg_error(1e-1)
- .set_max_avg_biased_error(1e-1);
- param::ConvBias param;
- param.pad_h = param.pad_w = 1;
- param.stride_h = param.stride_w = 2;
- param.format = param::ConvBias::Format::NCHW4;
- checker.set_param(param).execs({{32, 4, 12, 12, 4},
- {16, 4, 3, 3, 4},
- {1, 4, 1, 1, 4},
- {32, 4, 6, 6, 4},
- {}});
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_CHECK_BOUNDS_1x1) {
- require_compute_capability(6, 1);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_NCHW4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::NCHW4,
- conv_bias::get_int8_nchw4_args_check_bounds(1));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_CHECK_BOUNDS_3x3) {
- require_compute_capability(6, 1);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_NCHW4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::NCHW4,
- conv_bias::get_int8_nchw4_args_check_bounds(3));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_CHECK_BOUNDS_5x5) {
- require_compute_capability(6, 1);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_NCHW4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::NCHW4,
- conv_bias::get_int8_nchw4_args_check_bounds(5));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_CHECK_BOUNDS_7x7) {
- require_compute_capability(6, 1);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_NCHW4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::NCHW4,
- conv_bias::get_int8_nchw4_args_check_bounds(7));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4) {
- require_compute_capability(6, 1);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_CHWN4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::CHWN4);
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_WITH_Z) {
- require_compute_capability(6, 1);
- Checker<ConvBiasForward> checker(handle_cuda());
- checker.set_before_exec_callback(
- conv_bias::ConvBiasAlgoChecker<ConvBiasForward>(
- "INT8_CHWN4_DOTPROD_IMPLICIT_GEMM"));
- UniformIntRNG rng{-3, 3};
- UniformIntRNG bias_rng{-50, 50};
- checker.set_rng(0, &rng)
- .set_rng(1, &rng)
- .set_rng(2, &bias_rng)
- .set_rng(3, &rng)
- .set_dtype(0, dtype::QuantizedS8{1.2f})
- .set_dtype(1, dtype::QuantizedS8{1.3f})
- .set_dtype(2, dtype::QuantizedS32{1.2f * 1.3f})
- .set_dtype(3, dtype::QuantizedS8{1.1f})
- .set_dtype(4, dtype::QuantizedS8{1.1f})
- .set_epsilon(1 + 1e-3)
- .set_max_avg_error(1e-1)
- .set_max_avg_biased_error(1e-1);
- param::ConvBias param;
- param.pad_h = param.pad_w = 1;
- param.stride_h = param.stride_w = 1;
- param.format = param::ConvBias::Format::CHWN4;
- checker.set_param(param).execs({{4, 12, 12, 32, 4},
- {4, 3, 3, 16, 4},
- {4, 1, 1, 1, 4},
- {4, 12, 12, 32, 4},
- {}});
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_HSWISH) {
- require_compute_capability(6, 1);
- Checker<ConvBiasForward> checker(handle_cuda());
- checker.set_before_exec_callback(
- conv_bias::ConvBiasAlgoChecker<ConvBiasForward>(
- "INT8_CHWN4_DOTPROD_IMPLICIT_GEMM"));
- UniformIntRNG rng{-3, 3};
- UniformIntRNG bias_rng{-50, 50};
- checker.set_rng(0, &rng)
- .set_rng(1, &rng)
- .set_rng(2, &bias_rng)
- .set_rng(3, &rng)
- .set_dtype(0, dtype::QuantizedS8{1.2f})
- .set_dtype(1, dtype::QuantizedS8{1.3f})
- .set_dtype(2, dtype::QuantizedS32{1.2f * 1.3f})
- .set_dtype(4, dtype::QuantizedS8{0.001f})
- .set_epsilon(1 + 1e-3)
- .set_max_avg_error(1e-1)
- .set_max_avg_biased_error(1e-1);
- param::ConvBias param;
- param.pad_h = param.pad_w = 1;
- param.stride_h = param.stride_w = 1;
- param.format = param::ConvBias::Format::CHWN4;
- param.nonlineMode = param::ConvBias::NonlineMode::H_SWISH;
- checker.set_param(param).execs(
- {{4, 12, 12, 32, 4}, {4, 3, 3, 16, 4}, {4, 1, 1, 1, 4}, {}, {}});
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_CHECK_BOUNDS) {
- require_compute_capability(6, 1);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_CHWN4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_args_check_bounds(3));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_SMALL_CHANNEL_1x1) {
- require_compute_capability(6, 1);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_CHWN4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_small_channel_args(1));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_SMALL_CHANNEL_3x3) {
- require_compute_capability(6, 1);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_CHWN4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_small_channel_args(3));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_SMALL_CHANNEL_5x5) {
- require_compute_capability(6, 1);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_CHWN4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_small_channel_args(5));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_SMALL_CHANNEL_7x7) {
- require_compute_capability(6, 1);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_CHWN4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_small_channel_args(7));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_SMALL_CHANNEL_CHECK_BOUNDS) {
- require_compute_capability(6, 1);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_NCHW4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::NCHW4,
- conv_bias::get_int8_nchw4_small_channel_args_check_bounds(3));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_SMALL_CHANNEL_1x1_CHECK_BOUNDS) {
- require_compute_capability(6, 1);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_CHWN4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_small_channel_args_check_bounds(1));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_SMALL_CHANNEL_5x5_CHECK_BOUNDS) {
- require_compute_capability(6, 1);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_CHWN4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_small_channel_args_check_bounds(5));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_SMALL_CHANNEL_7x7_CHECK_BOUNDS) {
- require_compute_capability(6, 1);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_CHWN4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_small_channel_args_check_bounds(7));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_TENSORCORE_1x1) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_NCHW4_IMMA_IMPLICIT_GEMM_mma16x16x16",
- param::ConvBias::Format::NCHW4,
- conv_bias::get_int8_nchw4_tensorcore_args(1));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_TENSORCORE_3x3) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_NCHW4_IMMA_IMPLICIT_GEMM_mma16x16x16",
- param::ConvBias::Format::NCHW4,
- conv_bias::get_int8_nchw4_tensorcore_args(3));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_TENSORCORE_5x5) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_NCHW4_IMMA_IMPLICIT_GEMM_mma16x16x16",
- param::ConvBias::Format::NCHW4,
- conv_bias::get_int8_nchw4_tensorcore_args(5));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_TENSORCORE_7x7) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_NCHW4_IMMA_IMPLICIT_GEMM_mma16x16x16",
- param::ConvBias::Format::NCHW4,
- conv_bias::get_int8_nchw4_tensorcore_args(7));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_TENSORCORE_CHECK_BOUNDS_ALGO_0) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_NCHW4_IMMA_IMPLICIT_GEMM_mma16x16x16",
- param::ConvBias::Format::NCHW4,
- conv_bias::get_int8_nchw4_args_check_bounds(3));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_TENSORCORE_CHECK_BOUNDS_ALGO_1) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_NCHW4_IMMA_IMPLICIT_GEMM_mma8x32x16",
- param::ConvBias::Format::NCHW4,
- conv_bias::get_int8_nchw4_args_check_bounds(3));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_TENSORCORE_CHECK_BOUNDS_ALGO_2) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_NCHW4_IMMA_IMPLICIT_GEMM_mma32x8x16",
- param::ConvBias::Format::NCHW4,
- conv_bias::get_int8_nchw4_args_check_bounds(3));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_TENSORCORE_ALGO_0) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.1f},
- handle_cuda(), "INT8_CHWN4_IMMA_IMPLICIT_GEMM_mma16x16x16",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_tensorcore_args(3));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_TENSORCORE_ALGO_1) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.1f},
- handle_cuda(), "INT8_CHWN4_IMMA_IMPLICIT_GEMM_mma32x8x16",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_tensorcore_args(3));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_TENSORCORE_ALGO_2) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.1f},
- handle_cuda(), "INT8_CHWN4_IMMA_IMPLICIT_GEMM_mma8x32x16",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_tensorcore_args(3));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_TENSORCORE_CHECK_BOUNDS_1x1) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_CHWN4_IMMA_IMPLICIT_GEMM_mma16x16x16",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_args_check_bounds(1));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_TENSORCORE_CHECK_BOUNDS_5x5) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_CHWN4_IMMA_IMPLICIT_GEMM_mma16x16x16",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_args_check_bounds(5));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_TENSORCORE_CHECK_BOUNDS_7x7) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(), "INT8_CHWN4_IMMA_IMPLICIT_GEMM_mma16x16x16",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_args_check_bounds(7));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_TENSORCORE_WITH_Z) {
- require_compute_capability(7, 5);
- Checker<ConvBiasForward> checker(handle_cuda());
- checker.set_before_exec_callback(
- conv_bias::ConvBiasAlgoChecker<ConvBiasForward>(
- "INT8_NCHW4_IMMA_IMPLICIT_GEMM_mma16x16x16"));
- UniformIntRNG rng{-3, 3};
- UniformIntRNG bias_rng{-50, 50};
- checker.set_rng(0, &rng)
- .set_rng(1, &rng)
- .set_rng(2, &bias_rng)
- .set_rng(3, &rng)
- .set_dtype(0, dtype::QuantizedS8{1.2f})
- .set_dtype(1, dtype::QuantizedS8{1.3f})
- .set_dtype(2, dtype::QuantizedS32{1.2f * 1.3f})
- .set_dtype(3, dtype::QuantizedS8{1.1f})
- .set_dtype(4, dtype::QuantizedS8{1.0f})
- .set_epsilon(1 + 1e-3)
- .set_max_avg_error(1e-1)
- .set_max_avg_biased_error(1e-1);
- param::ConvBias param;
- param.pad_h = param.pad_w = 1;
- param.stride_h = param.stride_w = 1;
- param.format = param::ConvBias::Format::NCHW4;
- checker.set_param(param).execs({{64, 8, 12, 12, 4},
- {64, 8, 3, 3, 4},
- {1, 16, 1, 1, 4},
- {64, 16, 12, 12, 4},
- {}});
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_TENSORCORE_WITH_Z) {
- require_compute_capability(7, 5);
- Checker<ConvBiasForward> checker(handle_cuda());
- checker.set_before_exec_callback(
- conv_bias::ConvBiasAlgoChecker<ConvBiasForward>(
- "INT8_CHWN4_IMMA_IMPLICIT_GEMM_mma16x16x16"));
- UniformIntRNG rng{-3, 3};
- UniformIntRNG bias_rng{-50, 50};
- checker.set_rng(0, &rng)
- .set_rng(1, &rng)
- .set_rng(2, &bias_rng)
- .set_rng(3, &rng)
- .set_dtype(0, dtype::QuantizedS8{1.2f})
- .set_dtype(1, dtype::QuantizedS8{1.3f})
- .set_dtype(2, dtype::QuantizedS32{1.2f * 1.3f})
- .set_dtype(3, dtype::QuantizedS8{1.1f})
- .set_dtype(4, dtype::QuantizedS8{1.0f})
- .set_epsilon(1 + 1e-3)
- .set_max_avg_error(1e-1)
- .set_max_avg_biased_error(1e-1);
- param::ConvBias param;
- param.pad_h = param.pad_w = 1;
- param.stride_h = param.stride_w = 1;
- param.format = param::ConvBias::Format::CHWN4;
- checker.set_param(param).execs({{8, 12, 12, 64, 4},
- {8, 3, 3, 64, 4},
- {16, 1, 1, 1, 4},
- {16, 12, 12, 64, 4},
- {}});
- }
-
- TEST_F(CUDA,
- CONV_BIAS_INT8_CHWN4_REFORMAT_FILTER_TENSORCORE_CHECK_BOUNDS_ALGO_0) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(),
- "INT8_CHWN4_IMMA_IMPLICIT_GEMM_REORDER_FILTER_mma16x16x16",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_args_check_bounds(3));
- }
-
- TEST_F(CUDA,
- CONV_BIAS_INT8_CHWN4_REFORMAT_FILTER_TENSORCORE_CHECK_BOUNDS_ALGO_1) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(),
- "INT8_CHWN4_IMMA_IMPLICIT_GEMM_REORDER_FILTER_mma8x32x16",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_args_check_bounds(3));
- }
-
- TEST_F(CUDA,
- CONV_BIAS_INT8_CHWN4_REFORMAT_FILTER_TENSORCORE_CHECK_BOUNDS_ALGO_2) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(),
- "INT8_CHWN4_IMMA_IMPLICIT_GEMM_REORDER_FILTER_mma32x8x16",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_args_check_bounds(3));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_REFORMAT_FILTER_TENSORCORE_ALGO_0) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(),
- "INT8_CHWN4_IMMA_IMPLICIT_GEMM_REORDER_FILTER_mma16x16x16",
- param::ConvBias::Format::CHWN4, conv_bias::get_int8_chwn4_args(3));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_REFORMAT_FILTER_TENSORCORE_ALGO_1) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(),
- "INT8_CHWN4_IMMA_IMPLICIT_GEMM_REORDER_FILTER_mma8x32x16",
- param::ConvBias::Format::CHWN4, conv_bias::get_int8_chwn4_args(3));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_REFORMAT_FILTER_TENSORCORE_ALGO_2) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(),
- "INT8_CHWN4_IMMA_IMPLICIT_GEMM_REORDER_FILTER_mma32x8x16",
- param::ConvBias::Format::CHWN4, conv_bias::get_int8_chwn4_args(3));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_UNROLL_WIDTH_TENSORCORE_ALGO_0) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.1f},
- handle_cuda(),
- "INT8_CHWN4_IMMA_IMPLICIT_GEMM_UNROLL_WIDTH_mma16x16x16",
- param::ConvBias::Format::CHWN4, conv_bias::get_int8_chwn4_args(3));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_UNROLL_WIDTH_TENSORCORE_ALGO_1) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(),
- "INT8_CHWN4_IMMA_IMPLICIT_GEMM_UNROLL_WIDTH_mma8x32x16",
- param::ConvBias::Format::CHWN4, conv_bias::get_int8_chwn4_args(3));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_UNROLL_WIDTH_TENSORCORE_ALGO_2) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f},
- handle_cuda(),
- "INT8_CHWN4_IMMA_IMPLICIT_GEMM_UNROLL_WIDTH_mma32x8x16",
- param::ConvBias::Format::CHWN4, conv_bias::get_int8_chwn4_args(3));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_UNROLL_WIDTH_TENSORCORE_1x1) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.1f},
- handle_cuda(),
- "INT8_CHWN4_IMMA_IMPLICIT_GEMM_UNROLL_WIDTH_mma16x16x16",
- param::ConvBias::Format::CHWN4, conv_bias::get_int8_chwn4_args(1));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_UNROLL_WIDTH_TENSORCORE_5x5) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.1f},
- handle_cuda(),
- "INT8_CHWN4_IMMA_IMPLICIT_GEMM_UNROLL_WIDTH_mma16x16x16",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_args_small_batch(5));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_UNROLL_WIDTH_TENSORCORE_7x7) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.1f},
- handle_cuda(),
- "INT8_CHWN4_IMMA_IMPLICIT_GEMM_UNROLL_WIDTH_mma16x16x16",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_args_small_batch(7));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_UNROLL_WIDTH_TENSORCORE_5x5_ALGO_1) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.1f},
- handle_cuda(),
- "INT8_CHWN4_IMMA_IMPLICIT_GEMM_UNROLL_WIDTH_mma32x8x16",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_args_small_batch(5));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_UNROLL_WIDTH_TENSORCORE_5x5_ALGO_2) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.1f},
- handle_cuda(),
- "INT8_CHWN4_IMMA_IMPLICIT_GEMM_UNROLL_WIDTH_mma8x32x16",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_args_small_batch(5));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_UNROLL_WIDTH_TENSORCORE_1x1_ALGO_1) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.1f},
- handle_cuda(),
- "INT8_CHWN4_IMMA_IMPLICIT_GEMM_UNROLL_WIDTH_mma32x8x16",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_args_small_batch(1));
- }
-
- TEST_F(CUDA, CONV_BIAS_INT8_CHWN4_UNROLL_WIDTH_TENSORCORE_1x1_ALGO_2) {
- require_compute_capability(7, 5);
- conv_bias::check_conv_bias(
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.1f},
- handle_cuda(),
- "INT8_CHWN4_IMMA_IMPLICIT_GEMM_UNROLL_WIDTH_mma8x32x16",
- param::ConvBias::Format::CHWN4,
- conv_bias::get_int8_chwn4_args_small_batch(1));
- }
-
-
- TEST_F(CUDA, FALLBACK_CONV_QS8) {
- require_compute_capability_eq(7, 5);
- Checker<ConvBiasForward> checker(handle_cuda());
- auto check = [&checker](const std::string&& algo) {
- checker.set_before_exec_callback(
- conv_bias::ConvBiasAlgoChecker<ConvBiasForward>(algo.c_str()));
- UniformIntRNG rng{-3, 3};
- UniformIntRNG bias_rng{-50, 50};
- checker.set_rng(0, &rng)
- .set_rng(1, &rng)
- .set_rng(2, &bias_rng)
- .set_rng(3, &rng)
- .set_dtype(0, dtype::QuantizedS8{1.2f})
- .set_dtype(1, dtype::QuantizedS8{1.3f})
- .set_dtype(2, dtype::QuantizedS32{1.2f * 1.3f})
- .set_dtype(3, dtype::QuantizedS8{19.990229f})
- .set_dtype(4, dtype::QuantizedS8{19.990228f})
- .set_epsilon(1e-3)
- .set_max_avg_error(1e-1)
- .set_max_avg_biased_error(1e-3);
- param::ConvBias param;
- param.pad_h = param.pad_w = 1;
- param.stride_h = param.stride_w = 2;
- param.format = param::ConvBias::Format::NCHW;
- checker.set_param(param).execs({{16, 15, 14, 14},
- {28, 15, 3, 3},
- {1, 28, 1, 1},
- {16, 28, 7, 7},
- {}});
- checker.set_param(param).execs({{16, 32, 14, 14},
- {32, 32, 3, 3},
- {1, 32, 1, 1},
- {},
- {}});
- };
- check("FALLBACK_CONV_NCHW_QS8");
- }
-
- TEST_F(CUDA, FALLBACK_CONV_QS8_F32) {
- require_compute_capability_eq(7, 5);
- Checker<ConvBiasForward> checker(handle_cuda());
- auto check = [&checker](const std::string&& algo) {
- checker.set_before_exec_callback(
- conv_bias::ConvBiasAlgoChecker<ConvBiasForward>(algo.c_str()));
- UniformIntRNG rng{-3, 3};
- UniformFloatRNG bias_rng{-50.f, 50.f};
- checker.set_rng(0, &rng)
- .set_rng(1, &rng)
- .set_rng(2, &bias_rng)
- .set_rng(3, &rng)
- .set_dtype(0, dtype::QuantizedS8{1.2f})
- .set_dtype(1, dtype::QuantizedS8{1.3f})
- .set_dtype(2, dtype::Float32{})
- .set_dtype(3, dtype::Float32{})
- .set_dtype(4, dtype::Float32{})
- .set_epsilon(1e-3)
- .set_max_avg_error(1e-1)
- .set_max_avg_biased_error(1e-3);
- param::ConvBias param;
- param.pad_h = param.pad_w = 1;
- param.stride_h = param.stride_w = 2;
- param.format = param::ConvBias::Format::NCHW;
- checker.set_param(param).execs({{16, 15, 14, 14},
- {28, 15, 3, 3},
- {1, 28, 1, 1},
- {16, 28, 7, 7},
- {}});
- checker.set_param(param).execs({{16, 32, 14, 14},
- {32, 32, 3, 3},
- {1, 32, 1, 1},
- {},
- {}});
- };
- check("FALLBACK_CONV_NCHW_QS8");
- }
-
- TEST_F(CUDA, CUTLASS_CONV_BIAS_INT8_WEIGHT_PREPROCESS) {
- require_compute_capability(6, 1);
- Checker<ConvBiasForward, OprWeightPreprocessProxy<ConvBiasForward>> checker(
- handle_cuda());
- auto check = [&checker](const std::string& algo) {
- checker.set_before_exec_callback(
- conv_bias::ConvBiasAlgoChecker<ConvBiasForward>(algo.c_str()));
- UniformIntRNG rng{-16, 16};
- UniformIntRNG bias_rng{-50, 50};
- UniformIntRNG const_rng{1, 1};
- checker.set_rng(0, &rng)
- .set_rng(1, &rng)
- .set_rng(2, &bias_rng)
- .set_rng(3, &rng)
- .set_dtype(0, dtype::QuantizedS8{1.2f})
- .set_dtype(1, dtype::QuantizedS8{1.3f})
- .set_dtype(2, dtype::QuantizedS32{1.2f * 1.3f})
- .set_dtype(3, dtype::QuantizedS8{1.3f})
- .set_dtype(4, dtype::QuantizedS8{1.0f})
- .set_epsilon(1 + 1e-3)
- .set_max_avg_error(1e-1)
- .set_max_avg_biased_error(1e-3);
- param::ConvBias param;
- param.pad_h = param.pad_w = 1;
- param.stride_h = param.stride_w = 2;
- param.format = param::ConvBias::Format::NCHW4;
- checker.set_param(param).execs({{16, 4, 14, 14, 4},
- {16, 4, 3, 3, 4},
- {1, 4, 1, 1, 4},
- {},
- {}});
- };
- check("INT8_NCHW4_DOTPROD_IMPLICIT_GEMM_128X32X32_64X32X32");
- check("INT8_NCHW4_DOTPROD_IMPLICIT_GEMM_16X64X8_16X64X8");
- }
-
- #if CUDA_VERSION >= 10020
- /// \note: we only check several cases and block sizes in megdnn_test, the
- /// full testcases are written in cutlass repository
- TEST_F(CUDA, CUTLASS_CONV_BIAS_INT8_NCHW32_IMMA) {
- require_compute_capability_eq(7, 5);
- Checker<ConvBiasForward> checker(handle_cuda());
- auto check = [&checker](const std::string& algo) {
- checker.set_before_exec_callback(
- conv_bias::ConvBiasAlgoChecker<ConvBiasForward>(algo.c_str()));
- UniformIntRNG rng{-8, 8};
- UniformIntRNG bias_rng{-50, 50};
- UniformIntRNG const_rng{1, 1};
- // use scale that are all integers to avoid rouding error
- checker.set_rng(0, &rng)
- .set_rng(1, &rng)
- .set_rng(2, &bias_rng)
- .set_rng(3, &rng)
- .set_dtype(0, dtype::QuantizedS8{6.0f})
- .set_dtype(1, dtype::QuantizedS8{1.0f})
- .set_dtype(2, dtype::QuantizedS32{6.0f})
- .set_dtype(3, dtype::QuantizedS8{1.0f})
- .set_dtype(4, dtype::QuantizedS8{6.0f})
- .set_epsilon(1e-3);
- param::ConvBias param;
- param.pad_h = param.pad_w = 1;
- param.stride_h = param.stride_w = 1;
- param.format = param::ConvBias::Format::NCHW32;
- checker.set_param(param).execs({{16, 16, 7, 7, 32},
- {512, 16, 3, 3, 32},
- {1, 16, 1, 1, 32},
- {},
- {}});
- param.nonlineMode = param::ConvBias::NonlineMode::RELU;
- checker.set_param(param).execs({{16, 16, 7, 7, 32},
- {512, 16, 1, 1, 32},
- {1, 16, 1, 1, 32},
- {},
- {}});
- param.nonlineMode = param::ConvBias::NonlineMode::H_SWISH;
- checker.set_param(param).execs({{16, 16, 7, 7, 32},
- {512, 16, 3, 3, 32},
- {1, 16, 1, 1, 32},
- {},
- {}});
- // use non integer scale
- param.nonlineMode = param::ConvBias::NonlineMode::H_SWISH;
- checker.set_dtype(0, dtype::QuantizedS8{1.1f})
- .set_dtype(1, dtype::QuantizedS8{1.2f})
- .set_dtype(2, dtype::QuantizedS32{1.1f * 1.2f})
- .set_dtype(3, dtype::QuantizedS8{1.1f})
- .set_dtype(4, dtype::QuantizedS8{6.0f})
- .set_epsilon(1 + 1e-3)
- .set_max_avg_error(1e-1)
- .set_max_avg_biased_error(1e-1)
- .execs({{16, 16, 7, 7, 32},
- {512, 16, 3, 3, 32},
- {1, 16, 1, 1, 32},
- {16, 16, 7, 7, 32},
- {}});
- };
- std::string algo = ConvBias::algo_name<ConvBias::DirectParam>(
- "INT8_NCHW32_IMMA_IMPLICIT_GEMM_256X128X64_64X64X64",
- ConvBias::DirectParam{});
- check(algo);
- algo = ConvBias::algo_name<ConvBias::DirectParam>(
- "INT8_NCHW32_IMMA_IMPLICIT_GEMM_32X64X64_32X16X64",
- ConvBias::DirectParam{});
- check(algo);
- }
- #endif
-
- TEST_F(CUDA, CUTLASS_CONV_BIAS_INT8_NCHW4_NCHW) {
- require_compute_capability(6, 1);
- using namespace conv_bias;
- Checker<ConvBiasForward> checker(handle_cuda());
- UniformIntRNG int_rng{-3, 3};
- UniformFloatRNG float_rng{-50, 50};
- ConvBias::Param param;
- param.format = ConvBias::Param::Format::NCHW4_NCHW;
- param.nonlineMode = ConvBias::Param::NonlineMode::IDENTITY;
- checker.set_before_exec_callback(
- conv_bias::ConvBiasAlgoChecker<ConvBiasForward>(
- "INT8_NCHW4_DOTPROD_IMPLICIT_GEMM"));
- checker.set_dtype(0, dtype::QuantizedS8(1.9980618f))
- .set_dtype(1, dtype::QuantizedS8(1.9980927f))
- .set_dtype(2, dtype::Float32())
- .set_dtype(3, dtype::Float32())
- .set_dtype(4, dtype::Float32())
- .set_rng(0, &int_rng)
- .set_rng(1, &int_rng)
- .set_rng(2, &float_rng)
- .set_rng(3, &float_rng)
- .set_param(param);
-
- auto opr = handle_cuda()->create_operator<ConvBias>();
-
- auto run = [&](const TensorShapeArray& shapes) {
- opr->param() = param;
- TensorLayout dst_layout;
- opr->deduce_layout({shapes[0], dtype::Float32()},
- {shapes[1], dtype::Float32()}, {}, {}, dst_layout);
- checker.execs({shapes[0], shapes[1], shapes[2], dst_layout, {}});
- };
-
- run({{16, 4, 23, 40, 4}, {20, 4, 3, 3, 4}, {1, 20, 1, 1}});
- run({{16, 4, 92, 160, 4}, {24, 4, 3, 3, 4}, {1, 24, 1, 1}});
- run({{16, 4, 92, 160, 4}, {20, 4, 3, 3, 4}, {1, 20, 1, 1}});
- run({{16, 4, 92, 160, 4}, {16, 4, 3, 3, 4}, {1, 16, 1, 1}});
- run({{16, 4, 92, 160, 4}, {8, 4, 3, 3, 4}, {1, 8, 1, 1}});
- run({{16, 4, 46, 80, 4}, {4, 4, 3, 3, 4}, {1, 4, 1, 1}});
- }
-
- TEST_F(CUDA, CUTLASS_CONV_BIAS_INT8_NCHW4_NCHW32) {
- require_compute_capability(6, 1);
- using namespace conv_bias;
- Checker<ConvBiasForward> checker(handle_cuda());
- UniformIntRNG int_rng{-3, 3};
- UniformIntRNG bias_rng{-50, 50};
- ConvBias::Param param;
- param.format = ConvBias::Param::Format::NCHW4_NCHW32;
- param.nonlineMode = ConvBias::Param::NonlineMode::IDENTITY;
- checker.set_before_exec_callback(
- conv_bias::ConvBiasAlgoChecker<ConvBiasForward>(
- "INT8_NCHW4_DOTPROD_IMPLICIT_GEMM"));
- checker.set_dtype(0, dtype::QuantizedS8(1.9980618f))
- .set_dtype(1, dtype::QuantizedS8(1.9980927f))
- .set_dtype(2, dtype::QuantizedS32(1.9980618f * 1.9980927f))
- .set_dtype(3, dtype::QuantizedS8(1.9980618f))
- .set_dtype(4, dtype::QuantizedS8(1.9980618f))
- .set_rng(0, &int_rng)
- .set_rng(1, &int_rng)
- .set_rng(2, &bias_rng)
- .set_rng(3, &int_rng)
- .set_param(param);
- auto run = [&](const TensorShapeArray& shapes) {
- checker.execs({shapes[0], shapes[1], shapes[2], {}, {}});
- };
-
- run({{16, 4, 23, 40, 4}, {32, 4, 3, 3, 4}, {1, 1, 1, 1, 32}});
- run({{16, 4, 92, 160, 4}, {32, 4, 3, 3, 4}, {1, 1, 1, 1, 32}});
- run({{16, 4, 46, 80, 4}, {32, 4, 3, 3, 4}, {1, 1, 1, 1, 32}});
- }
-
- #if CUDA_VERSION >= 10020
- TEST_F(CUDA, CUTLASS_CONV_BIAS_INT8_NCHW32_NCHW4) {
- require_compute_capability(7, 5);
- using namespace conv_bias;
- Checker<ConvBiasForward> checker(handle_cuda());
- UniformIntRNG int_rng{-3, 3};
- UniformIntRNG bias_rng{-50, 50};
- ConvBias::Param param;
- param.format = ConvBias::Param::Format::NCHW32_NCHW4;
- param.nonlineMode = ConvBias::Param::NonlineMode::IDENTITY;
- checker.set_before_exec_callback(conv_bias::ConvBiasAlgoChecker<
- ConvBiasForward>(
- ConvBias::algo_name<ConvBias::DirectParam>(
- "INT8_NCHW32_IMMA_IMPLICIT_GEMM_256X128X64_64X64X64",
- ConvBias::DirectParam{})
- .c_str()));
- checker.set_dtype(0, dtype::QuantizedS8(1.9980618f))
- .set_dtype(1, dtype::QuantizedS8(1.9980927f))
- .set_dtype(2, dtype::QuantizedS32(1.9980618f * 1.9980927f))
- .set_dtype(3, dtype::QuantizedS8(1.9980618f))
- .set_dtype(4, dtype::QuantizedS8(1.9980618f))
- .set_rng(0, &int_rng)
- .set_rng(1, &int_rng)
- .set_rng(2, &bias_rng)
- .set_rng(3, &int_rng)
- .set_param(param);
- auto run = [&](const TensorShapeArray& shapes) {
- checker.execs({shapes[0], shapes[1], shapes[2], {}, {}});
- };
-
- run({{16, 2, 23, 40, 32}, {20, 2, 3, 3, 32}, {1, 5, 1, 1, 4}});
- run({{16, 1, 92, 160, 32}, {24, 1, 3, 3, 32}, {1, 6, 1, 1, 4}});
- run({{16, 2, 46, 80, 32}, {4, 2, 3, 3, 32}, {1, 1, 1, 1, 4}});
- }
- #endif
-
- #if MEGDNN_WITH_BENCHMARK
- TEST_F(CUDA, BENCHMARK_CONV_BIAS_INT8_CHWN4) {
- require_compute_capability(6, 1);
- benchmark_target_algo(
- handle_cuda(), get_resnet50_bench_args(), dtype::QuantizedS8{1.2f},
- dtype::QuantizedS8{1.3f}, dtype::QuantizedS32{1.2f * 1.3f},
- dtype::QuantizedS8{1.0f}, "INT8_CHWN4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::CHWN4);
- }
-
- TEST_F(CUDA, BENCHMARK_CONV_BIAS_INT8_NCHW4) {
- require_compute_capability(6, 1);
- benchmark_target_algo(
- handle_cuda(), get_resnet50_bench_args(), dtype::QuantizedS8{1.2f},
- dtype::QuantizedS8{1.3f}, dtype::QuantizedS32{1.2f * 1.3f},
- dtype::QuantizedS8{1.0f}, "INT8_NCHW4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::NCHW4);
- }
-
- TEST_F(CUDA, BENCHMARK_CONV_BIAS_INT8_CHWN4_TENSORCORE) {
- require_compute_capability(7, 5);
- benchmark_target_algo_with_cudnn_tsc(
- handle_cuda(), get_resnet50_bench_args(256),
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.0f},
- "INT8_CHWN4_IMMA_IMPLICIT_GEMM_mma16x16x16",
- param::ConvBias::Format::CHWN4);
- }
-
- TEST_F(CUDA, BENCHMARK_CONV_BIAS_INT8_CHWN4_TENSORCORE_ALL_ALGO) {
- require_compute_capability(7, 5);
- benchmark_target_algo_with_cudnn_tsc(
- handle_cuda(), get_resnet50_bench_args(256),
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.0f}, nullptr,
- param::ConvBias::Format::CHWN4);
- }
-
- TEST_F(CUDA, BENCHMARK_CONV_BIAS_INT8_CHWN4_DET_ALL_ALGO) {
- require_compute_capability(7, 5);
- benchmark_target_algo_with_cudnn_tsc(
- handle_cuda(), get_detection_bench_args(), dtype::QuantizedS8{1.2f},
- dtype::QuantizedS8{1.3f}, dtype::QuantizedS32{1.2f * 1.3f},
- dtype::QuantizedS8{1.0f}, nullptr, param::ConvBias::Format::CHWN4);
- }
-
- TEST_F(CUDA, BENCHMARK_CONV_BIAS_INT8_NCHW4_TENSORCORE) {
- require_compute_capability(7, 5);
- benchmark_target_algo_with_cudnn_tsc(
- handle_cuda(), get_resnet50_bench_args(256),
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.0f},
- "INT8_NCHW4_IMMA_IMPLICIT_GEMM_mma16x16x16",
- param::ConvBias::Format::NCHW4);
- }
-
- TEST_F(CUDA, BENCHMARK_CONV_BIAS_INT8_CHWN4_SMALL_CHANNEL) {
- require_compute_capability(6, 1);
- std::vector<BenchArgs> args;
- args.push_back(BenchArgs{64, 4, 224, 224, 64, 7, 2});
- benchmark_target_algo(
- handle_cuda(), args, dtype::QuantizedS8{1.2f},
- dtype::QuantizedS8{1.3f}, dtype::QuantizedS32{1.2f * 1.3f},
- dtype::QuantizedS8{1.0f}, "INT8_CHWN4_DOTPROD_IMPLICIT_GEMM",
- param::ConvBias::Format::CHWN4);
- }
-
-
- #if CUDA_VERSION >= 10020
- TEST_F(CUDA, BENCHMARK_CUTLASS_CONV_BIAS_INT8_NCHW32) {
- require_compute_capability(7, 5);
- benchmark_target_algo_with_cudnn_tsc(
- handle_cuda(), get_resnet50_bench_args(256),
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.0f},
- "DIRECT:INT8_NCHW32_IMMA_IMPLICIT_GEMM",
- param::ConvBias::Format::NCHW32);
- }
- #endif
-
- TEST_F(CUDA, BENCHMARK_CUTLASS_CONV_BIAS_INT8_NCHW4) {
- require_compute_capability(6, 1);
- benchmark_target_algo(
- handle_cuda(), get_resnet50_bench_args(64),
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.0f},
- "INT8_NCHW4_DOTPROD_IMPLICIT_GEMM", param::ConvBias::Format::NCHW4);
- }
-
- TEST_F(CUDA, BENCHMARK_SASS_CONV_BIAS_INT8_NCHW4_DET_FIRST) {
- require_compute_capability(6, 1);
- std::string algo = ConvBias::algo_name<ConvBias::DirectParam>(
- "SASS_INT8_NCHW4_DOTPROD_IMPLICIT_GEMM_128X32_64",
- ConvBias::DirectParam{});
- benchmark_target_algo(handle_cuda(), get_det_first_bench_args(16),
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f},
- dtype::QuantizedS8{1.0f}, algo.c_str(),
- param::ConvBias::Format::NCHW4);
- }
-
- TEST_F(CUDA, BENCHMARK_CUTLASS_CONV_BIAS_INT8_NCHW4_DET_FIRST) {
- require_compute_capability(6, 1);
- benchmark_target_algo(
- handle_cuda(), get_det_first_bench_args(16),
- dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f},
- dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.0f},
- "INT8_NCHW4_DOTPROD_IMPLICIT_GEMM_16", param::ConvBias::Format::NCHW4);
- }
-
- #endif
- }
- } // namespace test
- } // namespace megdnn
-
-
-
- // vim: syntax=cpp.doxygen
|