/* * SPDX-FileCopyrightText: Copyright 2010-2023 Arm Limited and/or its affiliates * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in_q7x4 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_q7x4 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_q7_to_q15_with_offset.c * Description: Converts the elements of the Q7 vector to Q15 vector with an added offset * * $Date: 22 March 2023 * $Revision: V.2.2.0 * * Target : Arm(R) M-Profile Architecture * * -------------------------------------------------------------------- */ #include "arm_nnsupportfunctions.h" /** * @ingroup groupSupport */ /** * @addtogroup supportConversion * @{ */ void arm_q7_to_q15_with_offset(const int8_t *src, int16_t *dst, int32_t block_size, int16_t offset) { int32_t block_cnt; #if defined(ARM_MATH_MVEI) int16x8_t source; const int16x8_t source_offset = vdupq_n_s16(offset); block_cnt = block_size / 8; while (block_cnt > 0) { source = vldrbq_s16(src); source = vaddq_s16(source, source_offset); vstrhq_s16(dst, source); dst += 8; src += 8; block_cnt--; } block_cnt = block_size & 0x7; #elif defined(ARM_MATH_DSP) /* Run the below code for cores that support SIMD instructions */ int32_t in_q7x4; int32_t in_q15x2_1; int32_t in_q15x2_2; int32_t out_q15x2_1; int32_t out_q15x2_2; /*loop unrolling */ block_cnt = block_size >> 2; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. */ const int32_t offset_q15x2 = PKHBT(offset, offset, 16); while (block_cnt > 0) { /* convert from s8 to s16 and then store the results in the destination buffer */ in_q7x4 = arm_nn_read_s8x4_ia(&src); /* Extract and sign extend each of the four s8 values to s16 */ in_q15x2_1 = SXTAB16(offset_q15x2, ROR(in_q7x4, 8)); in_q15x2_2 = SXTAB16(offset_q15x2, in_q7x4); out_q15x2_2 = PKHTB(in_q15x2_1, in_q15x2_2, 16); out_q15x2_1 = PKHBT(in_q15x2_2, in_q15x2_1, 16); arm_nn_write_q15x2_ia(&dst, out_q15x2_1); arm_nn_write_q15x2_ia(&dst, out_q15x2_2); block_cnt--; } /* Handle left over samples */ block_cnt = block_size % 0x4; #else /* Run the below code for Cortex-M0 */ /* Loop over block_size number of values */ block_cnt = block_size; #endif while (block_cnt > 0) { *dst++ = (int16_t)*src++ + offset; /* Decrement the loop counter */ block_cnt--; } } /** * @} end of Doxygen group */