Home
last modified time | relevance | path

Searched refs:row_start (Results 1 – 17 of 17) sorted by relevance

/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/cmsis/CMSIS/NN/Source/PoolingFunctions/
A Darm_pool_q7_HWC.c233 q7_t *row_start; in arm_maxpool_q7_HWC() local
238 row_start = Im_in; in arm_maxpool_q7_HWC()
256 memmove(target, row_start, dim_im_out * ch_im_in); in arm_maxpool_q7_HWC()
259 row_start += ch_im_in * dim_im_in; in arm_maxpool_q7_HWC()
261 for (; row_start < row_end; row_start += dim_im_in * ch_im_in) in arm_maxpool_q7_HWC()
392 q7_t *row_start; in arm_avepool_q7_HWC() local
397 row_start = Im_in; in arm_avepool_q7_HWC()
414 arm_q7_to_q15_no_shift(row_start, buffer, dim_im_out * ch_im_in); in arm_avepool_q7_HWC()
418 row_start += ch_im_in * dim_im_in; in arm_avepool_q7_HWC()
420 for (; row_start < row_end; row_start += dim_im_in * ch_im_in) in arm_avepool_q7_HWC()
[all …]
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/tools/make/downloads/cmsis/CMSIS/NN/Source/PoolingFunctions/
A Darm_pool_q7_HWC.c233 q7_t *row_start; in arm_maxpool_q7_HWC() local
238 row_start = Im_in; in arm_maxpool_q7_HWC()
256 memmove(target, row_start, dim_im_out * ch_im_in); in arm_maxpool_q7_HWC()
259 row_start += ch_im_in * dim_im_in; in arm_maxpool_q7_HWC()
261 for (; row_start < row_end; row_start += dim_im_in * ch_im_in) in arm_maxpool_q7_HWC()
392 q7_t *row_start; in arm_avepool_q7_HWC() local
397 row_start = Im_in; in arm_avepool_q7_HWC()
414 arm_q7_to_q15_no_shift(row_start, buffer, dim_im_out * ch_im_in); in arm_avepool_q7_HWC()
418 row_start += ch_im_in * dim_im_in; in arm_avepool_q7_HWC()
420 for (; row_start < row_end; row_start += dim_im_in * ch_im_in) in arm_avepool_q7_HWC()
[all …]
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/
A Dcpu_backend_gemm_custom_gemv.h93 int row_start, int row_end) {} in Run()
106 int row_start, int row_end) in CustomGemvTask() argument
114 row_start_(row_start), in CustomGemvTask()
177 int row_start = 0; in CustomGemv() local
181 dst_data, params, row_start, row_end); in CustomGemv()
182 row_start = row_end; in CustomGemv()
327 int row_start, int row_end) {
330 TFLITE_DCHECK_GE(row_end - row_start, kKernelRows);
331 for (int row = row_start; row < row_end; row += kKernelRows) {
642 TFLITE_DCHECK_GE(row_end - row_start, kKernelRows);
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/
A Dlossless.c373 int row_start, int row_end, in VP8LInverseTransform() argument
376 assert(row_start < row_end); in VP8LInverseTransform()
380 VP8LAddGreenToBlueAndRed(in, (row_end - row_start) * width, out); in VP8LInverseTransform()
383 PredictorInverseTransform_C(transform, row_start, row_end, in, out); in VP8LInverseTransform()
387 memcpy(out - width, out + (row_end - row_start - 1) * width, in VP8LInverseTransform()
392 ColorSpaceInverseTransform_C(transform, row_start, row_end, in, out); in VP8LInverseTransform()
401 const int out_stride = (row_end - row_start) * width; in VP8LInverseTransform()
402 const int in_stride = (row_end - row_start) * in VP8LInverseTransform()
406 ColorIndexInverseTransform_C(transform, row_start, row_end, src, out); in VP8LInverseTransform()
408 ColorIndexInverseTransform_C(transform, row_start, row_end, in, out); in VP8LInverseTransform()
A Dlossless.h64 int row_start, int row_end,
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/optimized/integer_ops/
A Ddepthwise_conv_hybrid.h146 int row_start = 0; in DepthwiseConvHybridGeneral() local
161 row_start = thread_start; in DepthwiseConvHybridGeneral()
163 output_ptr_offset = row_start * output_width * output_depth; in DepthwiseConvHybridGeneral()
169 (output_rows + row_start - row_end) * output_width * output_depth; in DepthwiseConvHybridGeneral()
173 for (int out_y = row_start; out_y < row_end; ++out_y) { in DepthwiseConvHybridGeneral()
A Ddepthwise_conv_hybrid_3x3_filter.h3128 int row_start = 0;
3141 row_start = thread_start;
3152 int32 out_y = row_start;
A Ddepthwise_conv_3x3_filter.h2970 int row_start = 0;
2983 row_start = thread_start;
2994 int32 out_y = row_start;
A Ddepthwise_conv.h1717 int row_start = 0;
1732 row_start = thread_start;
1734 output_ptr_offset = row_start * output_width * output_depth;
1740 (output_rows + row_start - row_end) * output_width * output_depth;
1742 for (int out_y = row_start; out_y < row_end; ++out_y) {
/AliOS-Things-master/components/littlevgl/src/lv_draw/
A Dlv_draw_basic.c303 lv_coord_t row_start = pos_y >= mask_p->y1 ? 0 : mask_p->y1 - pos_y; in lv_draw_letter() local
310 vdb_buf_tmp += (row_start * vdb_width) + col_start; in lv_draw_letter()
313 uint32_t bit_ofs = (row_start * width_bit) + (col_start * g.bpp); in lv_draw_letter()
326 for(row = row_start; row < row_end; row++) { in lv_draw_letter()
A Dlv_draw_rect.c162 lv_coord_t row_start = coords->y1 + radius; in lv_draw_rect_main_mid() local
168 row_start += 2; in lv_draw_rect_main_mid()
171 row_start += 1; in lv_draw_rect_main_mid()
175 if(row_start < 0) row_start = 0; in lv_draw_rect_main_mid()
177 for(row = row_start; row <= row_end; row++) { in lv_draw_rect_main_mid()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/optimized/
A Dlegacy_optimized_ops.h1012 row_start_(row_start), in LegacyFullyConnectedAsGEMVWorkerTask()
1074 int row_start = 0; in FullyConnectedAsGEMV() local
1082 row_start = row_end; in FullyConnectedAsGEMV()
1084 TFLITE_DCHECK_EQ(row_start, output_rows); in FullyConnectedAsGEMV()
2023 row_start_(row_start), in LegacyInt8FullyConnectedAsGEMVWorkerTask()
2088 int row_start = 0; in LegacyInt8FullyConnectedAsGEMV() local
2096 row_start = row_end; in LegacyInt8FullyConnectedAsGEMV()
2098 TFLITE_DCHECK_EQ(row_start, output_rows); in LegacyInt8FullyConnectedAsGEMV()
2323 int row_start = 0; in ShuffledFullyConnected() local
2329 row_end - row_start, output_depth, accum_depth, bias_data + row_start, in ShuffledFullyConnected()
[all …]
A Ddepthwiseconv_float.h1005 int row_start = 0;
1022 row_start = thread_start;
1024 output_ptr_offset = row_start * output_width * output_depth;
1030 (output_height + row_start - row_end) * output_width * output_depth;
1033 for (int out_y = row_start; out_y < row_end; ++out_y) {
A Ddepthwiseconv_uint8_3x3_filter.h5679 int row_start = 0;
5692 row_start = thread_start;
5703 int32 out_y = row_start;
12949 int row_start = 0;
12961 row_start = thread_start;
12965 const int row_count = row_end - row_start;
12989 if (row_start != 0) {
13322 row_start * stride * input_height_stride -
13327 row_start * output_height_stride + j_depth * 64 +
A Ddepthwiseconv_uint8.h1825 int row_start = 0;
1842 row_start = thread_start;
1844 output_ptr_offset = row_start * output_width * output_depth;
1850 (output_height + row_start - row_end) * output_width * output_depth;
1852 for (int out_y = row_start; out_y < row_end; ++out_y) {
A Doptimized_ops.h923 int row_start = 0; in ShuffledFullyConnected() local
925 int row_end = std::min(output_depth, row_start + kRowsPerWorker); in ShuffledFullyConnected()
927 int8_shuffled_weights_data + row_start * accum_depth, in ShuffledFullyConnected()
928 batches, row_end - row_start, output_depth, accum_depth, in ShuffledFullyConnected()
929 bias_data + row_start, output_multiplier, output_shift, in ShuffledFullyConnected()
930 output_data + row_start); in ShuffledFullyConnected()
931 row_start = row_end; in ShuffledFullyConnected()
933 TFLITE_DCHECK_EQ(row_start, output_depth); in ShuffledFullyConnected()
/AliOS-Things-master/components/littlevgl/src/lv_objx/
A Dlv_table.c798 uint16_t row_start = row_id * ext->col_cnt; in get_row_height() local
804 for(cell = row_start, col = 0; cell < row_start + ext->col_cnt; cell++, col++) { in get_row_height()

Completed in 110 milliseconds