Lines Matching refs:kernel_width
67 uint32_t kernel_width, in create_convolution2d_nhwc() argument
125 if (kernel_width == 0 || kernel_height == 0) { in create_convolution2d_nhwc()
128 xnn_operator_type_to_string(operator_type), kernel_width, kernel_height); in create_convolution2d_nhwc()
217 const size_t kernel_size = kernel_height * kernel_width; in create_convolution2d_nhwc()
279 kernel_height, kernel_width, in create_convolution2d_nhwc()
284 kernel_height, kernel_width, in create_convolution2d_nhwc()
390 convolution_op->kernel_width = kernel_width; in create_convolution2d_nhwc()
424 uint32_t kernel_width, in xnn_create_convolution2d_nhwc_qu8() argument
493 kernel_height, kernel_width, in xnn_create_convolution2d_nhwc_qu8()
522 uint32_t kernel_width, in xnn_create_convolution2d_nhwc_qs8() argument
587 kernel_height, kernel_width, in xnn_create_convolution2d_nhwc_qs8()
616 uint32_t kernel_width, in xnn_create_convolution2d_nhwc_f16() argument
668 kernel_height, kernel_width, in xnn_create_convolution2d_nhwc_f16()
697 uint32_t kernel_width, in xnn_create_convolution2d_nhwc_f32() argument
740 kernel_height, kernel_width, in xnn_create_convolution2d_nhwc_f32()
818 …const uint32_t effective_kernel_width = (convolution_op->kernel_width - 1) * convolution_op->dilat… in setup_convolution2d_nhwc()
835 convolution_op->kernel_width, in setup_convolution2d_nhwc()
934 const size_t kernel_width = convolution_op->kernel_width; in setup_convolution2d_nhwc() local
935 const size_t kernel_size = kernel_height * kernel_width; in setup_convolution2d_nhwc()
1089 const size_t kernel_width = convolution_op->kernel_width; in setup_convolution2d_nhwc() local
1090 const size_t kernel_size = kernel_height * kernel_width; in setup_convolution2d_nhwc()
1093 …e_t step_width = convolution_op->dilation_width == 1 ? convolution_op->stride_width : kernel_width; in setup_convolution2d_nhwc()