Home
last modified time | relevance | path

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

/external/XNNPACK/src/
Dfully-connected-nc.c393 …const size_t max_nc = divide_round_up(output_channels * num_other_tiles, num_threads * target_tile… in setup_fully_connected_nc() local
394 if (max_nc < nc) { in setup_fully_connected_nc()
395 nc = min(nc, divide_round_up(nc, max_nc * nr) * nr); in setup_fully_connected_nc()
Ddeconvolution-nhwc.c624 …const size_t max_nc = divide_round_up(group_output_channels * num_other_tiles, num_threads * targe… in setup_conv_path() local
625 if (max_nc < nc) { in setup_conv_path()
626 nc = min(nc, divide_round_up(nc, max_nc * nr) * nr); in setup_conv_path()
746 …const size_t max_nc = divide_round_up(group_output_channels * num_other_tiles, num_threads * targe… in setup_subconv2d_path() local
747 if (max_nc < nc) { in setup_subconv2d_path()
748 nc = min(nc, divide_round_up(nc, max_nc * nr) * nr); in setup_subconv2d_path()
Dconvolution-nhwc.c830 …const size_t max_nc = divide_round_up(group_output_channels * num_other_tiles, num_threads * targe… in setup_convolution2d_nhwc() local
831 if (max_nc < nc) { in setup_convolution2d_nhwc()
832 nc = min(nc, divide_round_up(nc, max_nc * nr) * nr); in setup_convolution2d_nhwc()
921 …const size_t max_nc = divide_round_up(group_output_channels * num_other_tiles, num_threads * targe… in setup_convolution2d_nhwc() local
922 if (max_nc < nc) { in setup_convolution2d_nhwc()
923 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));