fix dw-conv 3x3 check

This commit is contained in:
lixian 2021-04-09 15:26:29 +08:00
parent 3719fdf5ea
commit 4544cb8c1a
1 changed files with 1 additions and 1 deletions

View File

@ -339,7 +339,7 @@ bool CheckConvDw1DWinograd(const ConvParameter *conv_param, int thread_num) {
return conv_param->kernel_h_ == 3 && conv_param->kernel_w_ == 3 && conv_param->stride_w_ == 1 &&
conv_param->stride_h_ == 1 && conv_param->dilation_h_ == 1 && conv_param->dilation_w_ == 1 &&
conv_param->pad_u_ == 1 && conv_param->pad_d_ == 1 && conv_param->pad_l_ == 1 && conv_param->pad_r_ == 1 &&
conv_param->input_channel_ == conv_param->output_channel_ &&
conv_param->input_channel_ == conv_param->output_channel_ && conv_param->output_w_ >= 4 &&
conv_param->output_h_ >= thread_num * 4; // better had more than 4 rows for each thread
}