From dcf3c7e1591cfac19ee2b800141df3b3fe45062d Mon Sep 17 00:00:00 2001 From: Sang-Hoon Park Date: Thu, 4 Mar 2021 17:03:46 +0000 Subject: Move utility functions to NE/SVEMath To avoid unused function warnings when only partial data types are selected, the definition of functions are moved. Partially Resolves: COMPMID-4282 Change-Id: Ic30ddd3f2c88cac5978d27e5f4ada3639b5a04e5 Signed-off-by: Sang-Hoon Park Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5215 Reviewed-by: Georgios Pinitas Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- src/core/NEON/NEMath.h | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'src/core/NEON/NEMath.h') diff --git a/src/core/NEON/NEMath.h b/src/core/NEON/NEMath.h index 877ffb2827..13484c9c15 100644 --- a/src/core/NEON/NEMath.h +++ b/src/core/NEON/NEMath.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016-2020 Arm Limited. + * Copyright (c) 2016-2021 Arm Limited. * * SPDX-License-Identifier: MIT * @@ -205,6 +205,24 @@ void convert_float32x4x4_to_uint8x16(const float32x4x4_t &in, uint8x16_t &out); */ void convert_float32x4x4_to_int8x16(const float32x4x4_t &in, int8x16_t &out); +/** Converts from float vector to integer vector + * + * @param[in] in Float vector to converted + * + * @return The converted integer vector + */ +template +int_vec_type convert_float_to_int(const float_vec_type &in); + +/** Converts from integer vector to float vector + * + * @param[in] in Integer vector to converted + * + * @return The converted float vector + */ +template +float_vec_type convert_int_to_float(const int_vec_type &in); + /** Calculate sine. * * @param[in] val Input vector value in radians, F32 format. -- cgit v1.2.1