Home
last modified time | relevance | path

Searched refs:effective_kernel_height (Results 1 – 10 of 10) sorted by relevance

/external/XNNPACK/bench/
Dconvolution.cc62 const size_t effective_kernel_height = (kernel_height - 1) * dilation + 1; in xnnpack_convolution_qu8() local
68 …const size_t output_height = (input_height + padding_height - effective_kernel_height) / subsampli… in xnnpack_convolution_qu8()
183 const size_t effective_kernel_height = (kernel_height - 1) * dilation + 1; in xnnpack_convolution_qs8() local
189 …const size_t output_height = (input_height + padding_height - effective_kernel_height) / subsampli… in xnnpack_convolution_qs8()
305 const size_t effective_kernel_height = (kernel_height - 1) * dilation + 1; in xnnpack_convolution_f16() local
311 …const size_t output_height = (input_height + padding_height - effective_kernel_height) / subsampli… in xnnpack_convolution_f16()
420 const size_t effective_kernel_height = (kernel_height - 1) * dilation + 1; in xnnpack_convolution_f32() local
426 …const size_t output_height = (input_height + padding_height - effective_kernel_height) / subsampli… in xnnpack_convolution_f32()
543 const size_t effective_kernel_height = (kernel_height - 1) * dilation + 1; in tflite_convolution_f32() local
547 …if (padding_width == (effective_kernel_width - 1) && padding_height == (effective_kernel_height - … in tflite_convolution_f32()
[all …]
Df32-im2col-gemm.cc50 const size_t effective_kernel_height = (kernel_height - 1) * dilation + 1; in Im2ColGEMMBenchmark() local
54 …const size_t output_height = (input_height + padding_height - effective_kernel_height) / subsampli… in Im2ColGEMMBenchmark()
Ddeconvolution.cc49 const size_t effective_kernel_height = (kernel_height - 1) * dilation + 1; in xnnpack_deconvolution_qu8() local
55 …put_height = std::max(stride * (input_height - 1) + adjustment + effective_kernel_height, padding)… in xnnpack_deconvolution_qu8()
167 const size_t effective_kernel_height = (kernel_height - 1) * dilation + 1; in xnnpack_deconvolution_f32() local
173 …put_height = std::max(stride * (input_height - 1) + adjustment + effective_kernel_height, padding)… in xnnpack_deconvolution_f32()
Df16-igemm.cc59 const size_t effective_kernel_height = (kernel_height - 1) * dilation + 1; in IGEMMBenchmark() local
63 …const size_t output_height = (input_height + padding_height - effective_kernel_height) / subsampli… in IGEMMBenchmark()
Df16-dwconv.cc63 const size_t effective_kernel_height = (kernel_height - 1) * dilation + 1; in DWConvBenchmark() local
67 …const size_t output_height = (input_height + padding_height - effective_kernel_height) / subsampli… in DWConvBenchmark()
Df32-dwconv.cc55 const size_t effective_kernel_height = (kernel_height - 1) * dilation + 1; in DWConvBenchmark() local
59 …const size_t output_height = (input_height + padding_height - effective_kernel_height) / subsampli… in DWConvBenchmark()
Df32-igemm.cc53 const size_t effective_kernel_height = (kernel_height - 1) * dilation + 1; in IGEMMBenchmark() local
57 …const size_t output_height = (input_height + padding_height - effective_kernel_height) / subsampli… in IGEMMBenchmark()
Df32-dwconv2d-chw.cc74 const size_t effective_kernel_height = (kernel_height - 1) * dilation + 1; in DWConv2DBenchmark() local
76 …const size_t output_height = (input_height + padding_height - effective_kernel_height) / subsampli… in DWConv2DBenchmark()
/external/XNNPACK/src/operators/
Dmax-pooling-nhwc.c236 …const uint32_t effective_kernel_height = (max_pooling_op->kernel_height - 1) * max_pooling_op->dil… in setup_max_pooling2d_nhwc() local
239 …pooling_op->output_height - 1) * max_pooling_op->stride_height + effective_kernel_height, input_he… in setup_max_pooling2d_nhwc()
Dconvolution-nhwc.c817 …const uint32_t effective_kernel_height = (convolution_op->kernel_height - 1) * convolution_op->dil… in setup_convolution2d_nhwc() local
820 …(convolution_op->output_height - 1) * convolution_op->stride_height + effective_kernel_height - in… in setup_convolution2d_nhwc()