| 16 | namespace conv { |
| 17 | |
| 18 | TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_CUDNN_CONVOLUTION) { |
| 19 | require_compute_capability(7, 5); |
| 20 | conv_bias::check_conv_bias( |
| 21 | dtype::QuantizedS8{1.2f}, dtype::QuantizedS8{1.3f}, |
| 22 | dtype::QuantizedS32{1.2f * 1.3f}, dtype::QuantizedS8{1.3f}, handle_cuda(), |
| 23 | "DEFAULT:CUDNN:ConvBiasActivation:", param::ConvBias::Format::NCHW4); |
| 24 | } |
| 25 | |
| 26 | TEST_F(CUDA, CONV_BIAS_INT8_NCHW4_1x1) { |
| 27 | require_compute_capability(6, 1); |
nothing calls this directly
no test coverage detected