Home
last modified time | relevance | path

Searched refs:kRows (Results 1 – 9 of 9) sorted by relevance

/external/gemmlowp/internal/
Dsimd_wrappers.h64 static constexpr int kRows = tRows; member
66 static constexpr int kScalarCount = kRows * kCols;
98 (LhsType::kRows < RhsType::kRows));
132 static constexpr int kRows =
133 Lhs::kRows > Rhs::kRows ? Lhs::kRows : Rhs::kRows;
142 using Type = RegisterBlock<ScalarType, Shape::kRows, Shape::kCols>;
151 static constexpr int Rows = ResultBlockType::kRows;
153 static constexpr int LhsRows = Lhs::kRows;
155 static constexpr int RhsRows = Rhs::kRows;
200 static constexpr int Rows = ResultBlockType::kRows;
[all …]
Dblock_params.h84 l2_rows = RoundUp<KernelFormat::kRows>(rows); in FindL2BlockSizes()
92 RoundUp<KernelFormat::kRows>(CeilQuotient(rows, min_l2_rows_blocks)); in FindL2BlockSizes()
109 assert(rows % KernelFormat::kRows == 0); in FindL1BlockSizes()
119 1, (l1_bytes_to_use - 4 * KernelFormat::kRows * KernelFormat::kCols) / in FindL1BlockSizes()
120 (KernelFormat::kRows + KernelFormat::kCols)); in FindL1BlockSizes()
133 RoundUp<KernelFormat::kRows>(CeilQuotient(rows, min_l1_rows_blocks)); in FindL1BlockSizes()
Dkernel_reference.h52 std::int32_t accumulator[Format::kRows * Format::kCols]; in Run()
84 (ci + cc * Format::Rhs::Cell::kWidth) * Format::kRows; in Run()
97 for (int r = 0; r < Format::kRows; r++) { in Run()
100 accumulator[r + c * Format::kRows]; in Run()
106 for (int r = 0; r < Format::kRows; r++) { in Run()
109 accumulator[r + c * Format::kRows]; in Run()
Dcompute.h71 start_row, start_col, Format::kRows, Format::kCols); in ComputeRun()
79 assert(rows % Format::kRows == 0); in ComputeL1()
84 for (int r = 0; r < rows; r += Format::kRows) { in ComputeL1()
Doutput.h44 static constexpr int kRows = InputType::kRows; member
51 using OutputType = RegisterBlock<OutputScalarType, kRows, kCols>;
Dkernel.h165 static const int kRows = Lhs::Cell::kWidth * Lhs::kCells; member
Dmulti_thread_gemm.h638 const int thread_count = HowManyThreads<KernelFormat::kRows>( in MultiThreadGemm()
678 next_start_row = std::min(rows, RoundUp<KernelFormat::kRows>( in MultiThreadGemm()
/external/skia/gm/
Dcomplexclip2.cpp39 fTotalHeight = kRows * fHeight + SK_Scalar1 * (kRows + 1) * kPadY; in ComplexClip2GM()
96 for (int i = 0; i < kRows; ++i) { in onOnceBeforeDraw()
99 fOps[j*kRows+i][k] = ops[r.nextU() % SK_ARRAY_COUNT(ops)]; in onOnceBeforeDraw()
105 static constexpr int kRows = 5; member in skiagm::ComplexClip2GM
148 for (int i = 0; i < kRows; ++i) { in onDraw()
176 fOps[j*kRows+i][k], in onDraw()
181 fOps[j*kRows+i][k], in onDraw()
186 fOps[j*kRows+i][k], in onDraw()
203 SkClipOp fOps[kRows * kCols][5];
/external/gemmlowp/standalone/
Dneon-gemm-kernel-benchmark.cc224 static const int kRows = Lhs::Cell::kWidth * Lhs::kCells; member
3433 (ci + cc * Format::Rhs::Cell::kWidth) * Format::kRows; in Run()