Searched refs:block_params (Results 1 – 8 of 8) sorted by relevance
/external/gemmlowp/internal/ |
D | single_thread_gemm.h | 91 BlockParams block_params; in SingleThreadGemm() local 92 block_params.Init<KernelFormat>( in SingleThreadGemm() 107 rows, depth, cols, block_params.l2_rows, block_params.l2_depth, in SingleThreadGemm() 108 block_params.l2_cols, block_params.l1_rows, block_params.l1_depth, in SingleThreadGemm() 109 block_params.l1_cols); in SingleThreadGemm() 116 block_params); in SingleThreadGemm() 118 block_params); in SingleThreadGemm() 120 PackedResult packed_result(allocator, block_params); in SingleThreadGemm() 124 const bool pack_rhs_once = block_params.l2_cols >= cols; in SingleThreadGemm() 130 for (int r = 0; r < rows; r += block_params.l2_rows) { in SingleThreadGemm() [all …]
|
D | block_params.h | 165 const BlockParams& block_params) { in GetSideBlockParams() argument 167 side == Side::Lhs ? block_params.l1_rows : block_params.l1_cols; in GetSideBlockParams() 169 side == Side::Lhs ? block_params.l2_rows : block_params.l2_cols; in GetSideBlockParams() 171 side_block_params->l1_depth = block_params.l1_depth; in GetSideBlockParams() 172 side_block_params->l2_depth = block_params.l2_depth; in GetSideBlockParams()
|
D | multi_thread_gemm.h | 458 block_params(_block_params), in GemmWithPackedRhsTask() 468 PackedLhs packed_lhs(Side::Lhs, local_allocator, block_params); in Run() 470 PackedResult packed_result(local_allocator, block_params); in Run() 474 for (int c = 0; c < cols; c += block_params.l2_cols) { in Run() 475 int cs = std::min(block_params.l2_cols, cols - c); in Run() 477 for (int r = 0; r < rows; r += block_params.l2_rows) { in Run() 478 int rs = std::min(block_params.l2_rows, rows - r); in Run() 482 Compute(kernel, block_params, &packed_result, packed_lhs, packed_rhs, in Run() 506 const BlockParams& block_params; member 648 BlockParams block_params; in MultiThreadGemm() local [all …]
|
D | compute.h | 106 void Compute(const KernelBase& kernel, const BlockParams& block_params, in Compute() argument 111 kernel, block_params, packed_result, packed_lhs, packed_rhs); in Compute()
|
D | pack.h | 52 const BlockParams& block_params) in PackedSideBlock() argument 54 GetSideBlockParams(side, ¶ms_, block_params); in PackedSideBlock()
|
/external/gemmlowp/doc/ |
D | design.md | 115 for (int r = 0; r < rows; r += block_params.l2_rows) { 116 int rs = std::min(block_params.l2_rows, rows - r); 120 for (int c = 0; c < cols; c += block_params.l2_cols) { 121 int cs = std::min(block_params.l2_cols, cols - c); 127 Compute(kernel, block_params, &packed_result, packed_lhs, packed_rhs);
|
/external/mesa3d/src/mesa/main/ |
D | program_resource.c | 164 GLint block_params = 0; in _mesa_GetProgramInterfaceiv() local 172 block_params++; in _mesa_GetProgramInterfaceiv() 174 *params = MAX2(*params, block_params); in _mesa_GetProgramInterfaceiv()
|
/external/brotli/c/enc/ |
D | encode.c | 557 BrotliEncoderParams block_params = *params; in WriteMetaBlockInternal() local 609 BrotliBuildMetaBlock(m, data, wrapped_last_flush_pos, mask, &block_params, in WriteMetaBlockInternal() 620 uint32_t num_effective_dist_codes = block_params.dist.alphabet_size; in WriteMetaBlockInternal() 629 &block_params, in WriteMetaBlockInternal() 1308 BrotliEncoderParams block_params = params; in BrotliCompressBufferQuality10() local 1311 &block_params, in BrotliCompressBufferQuality10() 1321 uint32_t num_effective_dist_codes = block_params.dist.alphabet_size; in BrotliCompressBufferQuality10() 1334 &block_params, in BrotliCompressBufferQuality10()
|