Home
last modified time | relevance | path

Searched refs:max_mc (Results 1 – 3 of 3) sorted by relevance

/external/XNNPACK/src/operators/
Dconvolution-nchw.c633 const size_t max_mc = divide_round_up(input_size, num_threads * target_tiles_per_thread); in setup_convolution2d_nchw() local
634 if (max_mc < mc) { in setup_convolution2d_nchw()
635 mc = min(mc, divide_round_up(mc, max_mc * mr) * mr); in setup_convolution2d_nchw()
Dconvolution-nhwc.c1784 … const size_t max_mc = divide_round_up(batch_output_size, num_threads * target_tiles_per_thread); in setup_convolution2d_nhwc() local
1785 if (max_mc < mc) { in setup_convolution2d_nhwc()
1787 mc = min(mc, divide_round_up(mc, max_mc * mr) * mr); in setup_convolution2d_nhwc()
/external/eigen/Eigen/src/Core/products/
DGeneralBlockPanelKernel.h281 Index max_mc = m; variable
293 max_mc = (numext::mini<Index>)(576,max_mc);
295 Index mc = (numext::mini<Index>)(actual_lm/(3*k*sizeof(LhsScalar)), max_mc);