Searched refs:l2_cols (Results 1 – 7 of 7) sorted by relevance
/external/gemmlowp/internal/ |
D | block_params.h | 42 int l2_cols; member 50 &l2_rows, &l2_cols, &l2_depth); in Init() 51 FindL1BlockSizes<KernelFormat>(l2_rows, l2_cols, l2_depth, in Init() 62 int l2_cols = 0; in FindL2BlockSizes() local 76 l2_cols = in FindL2BlockSizes() 87 std::max(1, (l2_bytes_to_use - l2_depth * l2_cols) / in FindL2BlockSizes() 88 (num_threads * (l2_depth + 4 * l2_cols))); in FindL2BlockSizes() 96 *out_l2_cols = l2_cols; in FindL2BlockSizes() 166 side == Side::Lhs ? block_params.l2_rows : block_params.l2_cols; in GetSideBlockParams()
|
D | single_thread_gemm.h | 109 block_params.l2_cols, block_params.l1_rows, block_params.l1_depth, in SingleThreadGemm() 125 const bool pack_rhs_once = block_params.l2_cols >= cols; in SingleThreadGemm() 136 for (int c = 0; c < cols; c += block_params.l2_cols) { in SingleThreadGemm() 137 int cs = std::min(block_params.l2_cols, cols - c); in SingleThreadGemm()
|
D | multi_thread_gemm.h | 466 for (int c = 0; c < cols; c += block_params.l2_cols) { in Run() 467 int cs = std::min(block_params.l2_cols, cols - c); in Run() 667 for (int c = 0; c < cols; c += block_params.l2_cols) { in MultiThreadGemm() 668 int cs = std::min(block_params.l2_cols, cols - c); in MultiThreadGemm()
|
D | unpack.h | 35 block_params_.l2_cols); in PackedResult() 43 block_params_.l2_rows, block_params_.l2_cols, block_params_.l2_rows); in Map() 49 block_params_.l2_rows, block_params_.l2_cols, block_params_.l2_rows); in Map()
|
D | compute.h | 60 ComputeL1(r, rs, 0, block_params_.l2_cols, d, ds); in Compute()
|
/external/gemmlowp/doc/ |
D | design.txt | 121 for (int c = 0; c < cols; c += block_params.l2_cols) { 122 int cs = std::min(block_params.l2_cols, cols - c);
|
D | design.md | 120 for (int c = 0; c < cols; c += block_params.l2_cols) { 121 int cs = std::min(block_params.l2_cols, cols - c);
|