HomeSort by relevance Sort by last modified time
    Searched refs:l2_cols (Results 1 - 5 of 5) sorted by null

  /external/gemmlowp/internal/
block_params.h 42 int l2_cols; member in struct:gemmlowp::BlockParams
50 &l2_cols, &l2_depth);
51 FindL1BlockSizes<KernelFormat>(l2_rows, l2_cols, l2_depth, l1_bytes_to_use,
61 int l2_cols = 0; local
79 l2_cols =
90 std::max(1, (l2_bytes_to_use - l2_depth * l2_cols) /
91 (num_threads * (l2_depth + 4 * l2_cols)));
99 *out_l2_cols = l2_cols;
169 side == Side::Lhs ? block_params.l2_rows : block_params.l2_cols;
single_thread_gemm.h 106 "l2_cols = %d, l1_rows = %d, l1_depth = %d, l1_cols = %d)",
108 block_params.l2_cols, block_params.l1_rows, block_params.l1_depth,
124 const bool pack_rhs_once = block_params.l2_cols >= cols;
135 for (int c = 0; c < cols; c += block_params.l2_cols) {
136 int cs = std::min(block_params.l2_cols, cols - c);
unpack.h 35 block_params_.l2_cols);
43 block_params_.l2_rows, block_params_.l2_cols, block_params_.l2_rows);
49 block_params_.l2_rows, block_params_.l2_cols, block_params_.l2_rows);
compute.h 60 ComputeL1(r, rs, 0, block_params_.l2_cols, d, ds);
multi_thread_gemm.h 474 for (int c = 0; c < cols; c += block_params.l2_cols) {
475 int cs = std::min(block_params.l2_cols, cols - c);
658 for (int c = 0; c < cols; c += block_params.l2_cols) {
659 int cs = std::min(block_params.l2_cols, cols - c);

Completed in 913 milliseconds