Home
last modified time | relevance | path

Searched refs:max_nc (Results 1 – 4 of 4) sorted by relevance

/external/XNNPACK/src/operators/
Dfully-connected-nc.c223 …const size_t max_nc = divide_round_up(output_channels * num_other_tiles, num_threads * target_tile… in setup_fully_connected_nc() local
224 if (max_nc < nc) { in setup_fully_connected_nc()
225 nc = min(nc, divide_round_up(nc, max_nc * nr) * nr); in setup_fully_connected_nc()
Ddeconvolution-nhwc.c553 …const size_t max_nc = divide_round_up(group_output_channels * num_other_tiles, num_threads * targe… in setup_conv_path() local
554 if (max_nc < nc) { in setup_conv_path()
555 nc = min(nc, divide_round_up(nc, max_nc * nr) * nr); in setup_conv_path()
731 …const size_t max_nc = divide_round_up(group_output_channels * num_other_tiles, num_threads * targe… in setup_subconv2d_path() local
732 if (max_nc < nc) { in setup_subconv2d_path()
733 nc = min(nc, divide_round_up(nc, max_nc * nr) * nr); in setup_subconv2d_path()
Dconvolution-nhwc.c885 …const size_t max_nc = divide_round_up(group_output_channels * num_other_tiles, num_threads * targe… in setup_convolution2d_nhwc() local
886 if (max_nc < nc) { in setup_convolution2d_nhwc()
887 nc = min(nc, divide_round_up(nc, max_nc * nr) * nr); in setup_convolution2d_nhwc()
998 …const size_t max_nc = divide_round_up(group_output_channels * num_other_tiles, num_threads * targe… in setup_convolution2d_nhwc() local
999 if (max_nc < nc) { in setup_convolution2d_nhwc()
1000 nc = min(nc, divide_round_up(nc, max_nc * nr) * nr); in setup_convolution2d_nhwc()
/external/eigen/Eigen/src/Core/products/
DGeneralBlockPanelKernel.h208 Index max_nc; variable
214 max_nc = remaining_l1 / (k*sizeof(RhsScalar));
219 max_nc = (3*actual_l2)/(2*2*max_kc*sizeof(RhsScalar));
222 Index nc = numext::mini<Index>(actual_l2/(2*k*sizeof(RhsScalar)), max_nc) & (~(Traits::nr-1));