| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- /*
- * Copyright (C) 2010-2020 Arm Limited or its affiliates. All rights reserved.
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Licensed under the Apache License, Version 2.0 (the License); you may
- * not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an AS IS BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- /* ----------------------------------------------------------------------
- * Project: CMSIS NN Library
- * Title: arm_avgpool_s8.c
- * Description: Pooling function implementations
- *
- * $Date: March 4,2020
- * $Revision: V.1.1.1
- *
- * Target Processor: Cortex-M CPUs
- *
- * -------------------------------------------------------------------- */
- #include "arm_math.h"
- #include "arm_nnfunctions.h"
- /**
- * @ingroup groupNN
- */
- /**
- * @addtogroup Pooling
- * @{
- */
- /*
- * s8 average pooling function
- *
- * Refer to header file for details.
- *
- */
- #if defined(ARM_MATH_MVEI)
- arm_status arm_avgpool_s8(const int dim_src_height,
- const int dim_src_width,
- const int dim_dst_height,
- const int dim_dst_width,
- const int stride_height,
- const int stride_width,
- const int dim_kernel_height,
- const int dim_kernel_width,
- const int padding_height,
- const int padding_width,
- const int act_min,
- const int act_max,
- const int ch_src,
- int8_t *src,
- int16_t *bufferA,
- int8_t *dst)
- {
- (void)bufferA;
- int32_t i_x, i_y;
- int32_t k_x, k_y;
- for (i_y = 0; i_y < dim_dst_height; i_y++)
- {
- for (i_x = 0; i_x < dim_dst_width; i_x++)
- {
- int32_t k_y_start,k_y_end;
- int32_t k_x_start,k_x_end;
- int32_t chCnt;
- int8_t *pTmp,*pTmpInner;
- int8_t *pDst;
- k_y_start = MAX(0, i_y * stride_height - padding_height);
- k_y_end = MIN(i_y * stride_height - padding_height + dim_kernel_height,dim_src_height);
- k_x_start = MAX(0,i_x * stride_width - padding_width);
- k_x_end = MIN(i_x * stride_width - padding_width + dim_kernel_width, dim_src_width);
- pTmp = src;
- pDst = &dst[ch_src * (i_x + i_y * dim_dst_width)];
- chCnt = ch_src >> 4;
- while(chCnt > 0)
- {
- int32x4_t sumV1,sumV2,sumV3,sumV4;
- int8x16_t tempV;
- int16x8_t tempVLO, tempVHI;
- int32x4_t tempVLOLO, tempVLOHI, tempVHILO, tempVHIHI;
- int32_t count = 0;
- sumV1 = vdupq_n_s32(0);
- sumV2 = vdupq_n_s32(0);
- sumV3 = vdupq_n_s32(0);
- sumV4 = vdupq_n_s32(0);
- for (k_y = k_y_start; k_y < k_y_end; k_y++)
- {
- for (k_x = k_x_start; k_x < k_x_end; k_x++)
- {
- pTmpInner = pTmp + (ch_src * (k_x + k_y * dim_src_width));
- tempV = vldrbq_s8 (pTmpInner);
- tempVLO = vmovlbq_s8(tempV);
- tempVHI = vmovltq_s8(tempV);
- tempVLOLO = vmovlbq_s16(tempVLO);
- tempVLOHI = vmovltq_s16(tempVLO);
- tempVHILO = vmovlbq_s16(tempVHI);
- tempVHIHI = vmovltq_s16(tempVHI);
- sumV1 = vaddq_s32(sumV1,tempVLOLO);
- sumV2 = vaddq_s32(sumV2,tempVLOHI);
- sumV3 = vaddq_s32(sumV3,tempVHILO);
- sumV4 = vaddq_s32(sumV4,tempVHIHI);
- count++;
- }
- }
- sumV1[0] = sumV1[0] > 0 ? (sumV1[0] + count / 2) / count : (sumV1[0] - count / 2) / count;
- sumV1[1] = sumV1[1] > 0 ? (sumV1[1] + count / 2) / count : (sumV1[1] - count / 2) / count;
- sumV1[2] = sumV1[2] > 0 ? (sumV1[2] + count / 2) / count : (sumV1[2] - count / 2) / count;
- sumV1[3] = sumV1[3] > 0 ? (sumV1[3] + count / 2) / count : (sumV1[3] - count / 2) / count;
- sumV2[0] = sumV2[0] > 0 ? (sumV2[0] + count / 2) / count : (sumV2[0] - count / 2) / count;
- sumV2[1] = sumV2[1] > 0 ? (sumV2[1] + count / 2) / count : (sumV2[1] - count / 2) / count;
- sumV2[2] = sumV2[2] > 0 ? (sumV2[2] + count / 2) / count : (sumV2[2] - count / 2) / count;
- sumV2[3] = sumV2[3] > 0 ? (sumV2[3] + count / 2) / count : (sumV2[3] - count / 2) / count;
- sumV3[0] = sumV3[0] > 0 ? (sumV3[0] + count / 2) / count : (sumV3[0] - count / 2) / count;
- sumV3[1] = sumV3[1] > 0 ? (sumV3[1] + count / 2) / count : (sumV3[1] - count / 2) / count;
- sumV3[2] = sumV3[2] > 0 ? (sumV3[2] + count / 2) / count : (sumV3[2] - count / 2) / count;
- sumV3[3] = sumV3[3] > 0 ? (sumV3[3] + count / 2) / count : (sumV3[3] - count / 2) / count;
- sumV4[0] = sumV4[0] > 0 ? (sumV4[0] + count / 2) / count : (sumV4[0] - count / 2) / count;
- sumV4[1] = sumV4[1] > 0 ? (sumV4[1] + count / 2) / count : (sumV4[1] - count / 2) / count;
- sumV4[2] = sumV4[2] > 0 ? (sumV4[2] + count / 2) / count : (sumV4[2] - count / 2) / count;
- sumV4[3] = sumV4[3] > 0 ? (sumV4[3] + count / 2) / count : (sumV4[3] - count / 2) / count;
- sumV1 = vmaxq_s32(sumV1, vdupq_n_s32(act_min));
- sumV1 = vminq_s32(sumV1, vdupq_n_s32(act_max));
- sumV2 = vmaxq_s32(sumV2, vdupq_n_s32(act_min));
- sumV2 = vminq_s32(sumV2, vdupq_n_s32(act_max));
- sumV3 = vmaxq_s32(sumV3, vdupq_n_s32(act_min));
- sumV3 = vminq_s32(sumV3, vdupq_n_s32(act_max));
- sumV4 = vmaxq_s32(sumV4, vdupq_n_s32(act_min));
- sumV4 = vminq_s32(sumV4, vdupq_n_s32(act_max));
- tempVLO = vmovnbq_s32(tempVLO,sumV1);
- tempVLO = vmovntq_s32(tempVLO,sumV2);
- tempVHI = vmovnbq_s32(tempVHI,sumV3);
- tempVHI = vmovntq_s32(tempVHI,sumV4);
- tempV = vmovnbq_s16(tempV,tempVLO);
- tempV = vmovntq_s16(tempV,tempVHI);
- vstrbq_s8(pDst,tempV);
- pDst += 16;
- chCnt --;
- pTmp += 16;
- }
- chCnt = ch_src & 0xF;
- while(chCnt > 0)
- {
- int32_t sum = 0;
- int32_t count = 0;
- for (k_y = k_y_start; k_y < k_y_end; k_y++)
- {
- for (k_x = k_x_start; k_x < k_x_end; k_x++)
- {
- sum += pTmp[ch_src * (k_x + k_y * dim_src_width)];
- count++;
- }
- }
- sum = sum > 0 ? (sum + count / 2) / count : (sum - count / 2) / count;
- sum = MAX(sum, act_min);
- sum = MIN(sum, act_max);
- *pDst++ = sum;
- chCnt --;
- pTmp++;
- }
- }
- }
- return ARM_MATH_SUCCESS;
- }
- #else
- arm_status arm_avgpool_s8(const int dim_src_height,
- const int dim_src_width,
- const int dim_dst_height,
- const int dim_dst_width,
- const int stride_height,
- const int stride_width,
- const int dim_kernel_height,
- const int dim_kernel_width,
- const int padding_height,
- const int padding_width,
- const int act_min,
- const int act_max,
- const int ch_src,
- int8_t *src,
- int16_t *bufferA,
- int8_t *dst)
- {
- /* Reference C code adapted from CMSIS-NN arm_avepool_q7_HWC.
- */
- (void)bufferA;
- int16_t i_ch_in, i_x, i_y;
- int16_t k_x, k_y;
- for (i_y = 0; i_y < dim_dst_height; i_y++)
- {
- for (i_x = 0; i_x < dim_dst_width; i_x++)
- {
- for (i_ch_in = 0; i_ch_in < ch_src; i_ch_in++)
- {
- int sum = 0;
- int count = 0;
- for (k_y = i_y * stride_height - padding_height; k_y < i_y * stride_height - padding_height + dim_kernel_height; k_y++)
- {
- for (k_x = i_x * stride_width - padding_width; k_x < i_x * stride_width - padding_width + dim_kernel_width; k_x++)
- {
- if (k_y >= 0 && k_x >= 0 && k_y < dim_src_height && k_x < dim_src_width)
- {
- sum += src[i_ch_in + ch_src * (k_x + k_y * dim_src_width)];
- count++;
- }
- }
- }
- sum = sum > 0 ? (sum + count / 2) / count : (sum - count / 2) / count;
- sum = MAX(sum, act_min);
- sum = MIN(sum, act_max);
- dst[i_ch_in + ch_src * (i_x + i_y * dim_dst_width)] = sum;
- }
- }
- }
- return ARM_MATH_SUCCESS;
- }
- #endif /* ARM_MATH_MVEI */
- int32_t arm_avgpool_s8_get_buffer_size(const int dim_dst_width,
- const int ch_src)
- {
- (void)dim_dst_width;
- (void)ch_src;
- return 0;
- }
- /**
- * @} end of Pooling group
- */
|