Searched refs:max_nc (Results 1 – 4 of 4) sorted by relevance
/external/XNNPACK/src/ |
D | fully-connected-nc.c | 393 …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()
|
D | deconvolution-nhwc.c | 624 …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()
|
D | convolution-nhwc.c | 830 …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/ |
D | GeneralBlockPanelKernel.h | 208 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));
|