aboutsummaryrefslogtreecommitdiff
path: root/src/core/NEON/kernels/NEBox3x3Kernel.cpp
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2019-06-05 15:12:22 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2019-06-06 13:09:24 +0000
commitfad18382a77655b8139c5c82b86ea34bc642a27a (patch)
tree63a88b11f713b16bb0ce6958792036ffaf7d3725 /src/core/NEON/kernels/NEBox3x3Kernel.cpp
parent775c7f514253360fe87a35ac3763b916d5f442e1 (diff)
downloadComputeLibrary-fad18382a77655b8139c5c82b86ea34bc642a27a.tar.gz
COMPMID-2336: Fix warnings present in latest gcc
Change-Id: Icb69db76603341333a44cf121cc1c79035b54ae2 Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com> Reviewed-on: https://review.mlplatform.org/c/1295 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michalis Spyrou <michalis.spyrou@arm.com>
Diffstat (limited to 'src/core/NEON/kernels/NEBox3x3Kernel.cpp')
-rw-r--r--src/core/NEON/kernels/NEBox3x3Kernel.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/core/NEON/kernels/NEBox3x3Kernel.cpp b/src/core/NEON/kernels/NEBox3x3Kernel.cpp
index 48b959c308..7ca5e3c65c 100644
--- a/src/core/NEON/kernels/NEBox3x3Kernel.cpp
+++ b/src/core/NEON/kernels/NEBox3x3Kernel.cpp
@@ -33,7 +33,8 @@
using namespace arm_compute;
-int16x8_t calculate_kernel( const uint8x16_t &top_data, const uint8x16_t &mid_data, const uint8x16_t &bot_data){
+int16x8_t calculate_kernel(const uint8x16_t &top_data, const uint8x16_t &mid_data, const uint8x16_t &bot_data)
+{
const int16x8x2_t top_s16 =
{
{
@@ -101,8 +102,8 @@ void NEBox3x3FP16Kernel::run(const Window &window, const ThreadInfo &info)
int16x8_t out = calculate_kernel(top_data, mid_data, bot_data);
- float16x8_t outfloat = vcvtq_f16_u16(out);
- outfloat = vmulq_f16(outfloat, oneovernine);
+ float16x8_t outfloat = vcvtq_f16_s16(out);
+ outfloat = vmulq_f16(outfloat, oneovernine);
vst1_u8(output.ptr(), vqmovun_s16(vcvtq_s16_f16(outfloat)));
},
@@ -182,7 +183,7 @@ void NEBox3x3Kernel::run(const Window &window, const ThreadInfo &info)
outfloathigh = vshrq_n_s32(outfloathigh, shift);
outfloatlow = vshrq_n_s32(outfloatlow, shift);
out = vcombine_s16(vqmovn_s32((outfloatlow)),
- vqmovn_s32((outfloathigh)));
+ vqmovn_s32((outfloathigh)));
vst1_u8(output.ptr(), vqmovun_s16(out));
},