Home
last modified time | relevance | path

Searched refs:block_params_ (Results 1 – 2 of 2) sorted by relevance

/external/gemmlowp/internal/
Dcompute.h35 const BlockParams& block_params_; variable
46 block_params_(_block_params), in ComputeImpl()
53 assert(depth <= block_params_.l2_depth); in Compute()
54 for (int d = 0; d < depth; d += block_params_.l1_depth) { in Compute()
55 int ds = std::min(block_params_.l1_depth, depth - d); in Compute()
57 for (int r = 0; r < block_params_.l2_rows; r += block_params_.l1_rows) { in Compute()
58 int rs = std::min(block_params_.l1_rows, block_params_.l2_rows - r); in Compute()
60 ComputeL1(r, rs, 0, block_params_.l2_cols, d, ds); in Compute()
Dunpack.h33 : allocator_(_allocator), block_params_(_block_params) { in PackedResult()
34 matrix_handle_ = allocator_->Reserve<std::int32_t>(block_params_.l2_rows * in PackedResult()
35 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()
55 const BlockParams& block_params_; variable