Home | History | Annotate | Download | only in internal

Lines Matching full:rows

46   void Init(int rows, int cols, int depth, int num_threads) {
47 FindL2BlockSizes<KernelFormat>(rows, cols, depth, num_threads, &l2_rows,
54 static void FindL2BlockSizes(int rows, int cols, int depth, int num_threads,
83 l2_rows = RoundUp<KernelFormat::kRows>(rows);
89 std::max(1, CeilQuotient(rows, max_cache_friendly_l2_rows));
91 RoundUp<KernelFormat::kRows>(CeilQuotient(rows, min_l2_rows_blocks));
100 static void FindL1BlockSizes(int rows, int cols, int depth, int* out_l1_rows,
107 assert(rows % KernelFormat::kRows == 0);
131 std::max(1, CeilQuotient(rows, max_cache_friendly_l1_rows));
133 RoundUp<KernelFormat::kRows>(CeilQuotient(rows, min_l1_rows_blocks));
144 // rows/colums. See the explanation in kernel.h: in the LHS, 'width' means
145 // the number of rows, while in the RHS, 'width' means the number of columns.