Lines Matching refs:kernel_width
178 inline ConvHWC2CHWMicrokernelTester& kernel_width(uint32_t kernel_width) { in kernel_width() argument
179 assert(kernel_width >= 1); in kernel_width()
180 this->kernel_width_ = kernel_width; in kernel_width()
184 inline uint32_t kernel_width() const { in kernel_width() function
256 if (padded_input_width < kernel_width()) { in output_width()
259 return (padded_input_width - kernel_width()) / subsampling_width() + 1; in output_width()
304 …std::vector<float> kernel(output_channels() * kernel_height() * kernel_width() * input_channels());
308 …ator<float, 64>> packed_weights((input_channels() * kernel_height() * kernel_width() + 1) * packed…
321 kernel_height(), kernel_width(),
333 for (size_t kx = 0; kx < kernel_width(); kx++) {
339 … kernel[((oc * kernel_height() + ky) * kernel_width() + kx) * input_channels() + ic];