Home
last modified time | relevance | path

Searched refs:l2_cols (Results 1 – 5 of 5) sorted by relevance

/external/gemmlowp/internal/
Dblock_params.h42 int l2_cols; member
48 &l2_cols, &l2_depth); in Init()
49 FindL1BlockSizes<KernelFormat>(l2_rows, l2_cols, l2_depth, &l1_rows, in Init()
58 int l2_cols = 0; in FindL2BlockSizes() local
75 l2_cols = in FindL2BlockSizes()
86 std::max(1, (l2_bytes_to_use - l2_depth * l2_cols) / in FindL2BlockSizes()
87 (num_threads * (l2_depth + 4 * l2_cols))); in FindL2BlockSizes()
95 *out_l2_cols = l2_cols; in FindL2BlockSizes()
166 side == Side::Lhs ? block_params.l2_rows : block_params.l2_cols; in GetSideBlockParams()
Dsingle_thread_gemm.h83 const bool pack_rhs_once = block_params.l2_cols == cols; in SingleThreadGemm()
94 for (int c = 0; c < cols; c += block_params.l2_cols) { in SingleThreadGemm()
95 int cs = std::min(block_params.l2_cols, cols - c); in SingleThreadGemm()
Dunpack.h35 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()
Dmulti_thread_gemm.h402 for (int c = 0; c < cols; c += block_params.l2_cols) { in Run()
403 int cs = std::min(block_params.l2_cols, cols - c); in Run()
585 for (int c = 0; c < cols; c += block_params.l2_cols) { in MultiThreadGemm()
586 int cs = std::min(block_params.l2_cols, cols - c); in MultiThreadGemm()
Dcompute.h58 ComputeL1(r, rs, 0, block_params_.l2_cols, d, ds); in Compute()