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

  /external/gemmlowp/internal/
block_params.h 74 std::max(1, CeilQuotient(cols, max_cache_friendly_l2_cols));
76 RoundUp<KernelFormat::kCols>(CeilQuotient(cols, min_l2_cols_blocks));
89 std::max(1, CeilQuotient(rows, max_cache_friendly_l2_rows));
91 RoundUp<KernelFormat::kRows>(CeilQuotient(rows, min_l2_rows_blocks));
122 std::max(1, CeilQuotient(depth, max_cache_friendly_l1_depth));
124 RoundUp<kRegisterSize>(CeilQuotient(depth, min_l1_depth_blocks));
131 std::max(1, CeilQuotient(rows, max_cache_friendly_l1_rows));
133 RoundUp<KernelFormat::kRows>(CeilQuotient(rows, min_l1_rows_blocks));
common.h 212 Integer CeilQuotient(Integer a, Integer b) {
multi_thread_gemm.h 529 int thread_count = std::min(max_count, CeilQuotient(rows, MinRowsPerThread));
  /external/gemmlowp/test/
test_math_helpers.cc 56 Check(CeilQuotient(x, y) * y >= x);
57 Check(CeilQuotient(x, y) * y < x + y);

Completed in 270 milliseconds