Searched refs:start_width (Results 1 – 7 of 7) sorted by relevance
/external/gemmlowp/internal/ |
D | pack.h | 63 void seek_run(int start_width, int start_depth) const { in seek_run() argument 66 pos_ = params_.l2_width * start_depth + start_width * kernel_run_depth; in seek_run() 174 SideMap block(int start_width, int start_depth, int block_width, in block() argument 176 assert(start_width >= 0); in block() 177 assert(start_width + block_width <= width_); in block() 181 return SideMap(data(start_width, start_depth), block_width, block_depth, in block() 257 void Pack(PackedSideBlock* dst, int start_width) { in Pack() argument 264 dst->sums_of_each_slice() + start_width + cell_start_width; in Pack() 335 void PackL1(int start_width, int width, int start_depth, int depth) { in PackL1() argument 338 packed_side_block_->seek_run(start_width + w, start_depth); in PackL1() [all …]
|
D | pack_neon.h | 48 void Pack(PackedSideBlock<KernelSideFormat>* dst, int start_width) { in Pack() argument 121 dst->sums_of_each_slice() + start_width + 4 * cell; in Pack() 149 void Pack(PackedSideBlock<KernelSideFormat>* dst, int start_width) { in Pack() argument 238 dst->sums_of_each_slice() + start_width + 4 * cell; in Pack() 274 void Pack(PackedSideBlock<KernelSideFormat>* dst, int start_width) { in Pack() argument 275 std::int32_t* sums_ptr = dst->sums_of_each_slice() + start_width; in Pack()
|
D | pack_sse.h | 50 void Pack(PackedSideBlock<KernelSideFormat>* dst, int start_width) { in Pack() argument 61 dst->sums_of_each_slice() + start_width + cell_start_width; in Pack()
|
D | pack_msa.h | 48 void Pack(PackedSideBlock<KernelSideFormat>* dst, int start_width) { in Pack() argument 173 dst->sums_of_each_slice() + start_width + 4 * cell; in Pack() 202 void Pack(PackedSideBlock<KernelSideFormat>* dst, int start_width) { in Pack() argument 342 dst->sums_of_each_slice() + start_width + 4 * cell; in Pack()
|
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/ |
D | depthwiseconv_uint8_transitional.h | 485 int start_width = 0; 487 start_width = 1; 508 for (int x = start_width; x < adjusted_residual_width; ++x) { 665 int start_width = 0; 667 start_width = 1; 672 adjusted_residual_width - start_width; 691 memcpy(&scratch_data[start_width], input_data, copy_size); 693 scratch_data[start_width + i] += -kSymmetricZeroPoint; 697 memset(&scratch_data[start_width + copy_size], -input_offset_difference, 944 int start_width = 0; [all …]
|
D | depthwiseconv_uint8_3x3_filter.h | 4192 int start_width = 0; 4194 start_width = 1; 4196 if (start_width == 0) { 4416 int start_width = 0; 4418 start_width = 1; 4423 adjusted_residual_width - start_width; 4452 const int copy_remaining = (copy_size + start_width) & 0x7; 4477 TFLITE_DCHECK_EQ((start_width + copy_done) % 16, 0); 4478 vst1q_s8(scratch_data + start_width + copy_done, work_reg); 4485 TFLITE_DCHECK_EQ((start_width + copy_done) % 8, 0); [all …]
|
/external/gemmlowp/doc/ |
D | packing.md | 114 void seek_run(int start_width, int start_depth) const { 117 pos_ = params_.l2_width * start_depth + start_width * kernel_run_depth;
|