From a4f378dcd39addd4a63db1c0848f2c120804f4eb Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Fri, 26 Apr 2019 14:54:54 +0100 Subject: COMPMID-1995: Fix clang-tidy warnings - Remove VirtualCall checks - Fix some unused variables errors - Use std::array insted of C style arrays - Various fixes Change-Id: Ife6170b7102de42b8f04e298dcf8476bf90779f0 Signed-off-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/1049 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio --- src/core/NEON/kernels/NEDerivativeKernel.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/core/NEON/kernels/NEDerivativeKernel.cpp') diff --git a/src/core/NEON/kernels/NEDerivativeKernel.cpp b/src/core/NEON/kernels/NEDerivativeKernel.cpp index cfed324773..1d7237a5b4 100644 --- a/src/core/NEON/kernels/NEDerivativeKernel.cpp +++ b/src/core/NEON/kernels/NEDerivativeKernel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016, 2017 ARM Limited. + * Copyright (c) 2016-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -124,7 +124,7 @@ void NEDerivativeKernel::derivative_x(const Window &window) Iterator out_x(_output_x, window); /* Apply 1-D centered point discrete derivative mask ([-1 0 1]) along the X direction */ - execute_window_loop(window, [&](const Coordinates & id) + execute_window_loop(window, [&](const Coordinates &) { /* Load left and right data */ const uint8x16_t l_data = vld1q_u8(in.ptr() - 1); @@ -153,7 +153,7 @@ void NEDerivativeKernel::derivative_y(const Window &window) const size_t stride = _input->info()->strides_in_bytes()[1]; /* Apply 1-D centered point discrete derivative mask ([-1 0 1]^T) along the Y direction */ - execute_window_loop(window, [&](const Coordinates & id) + execute_window_loop(window, [&](const Coordinates &) { /* Load top and bottom data */ const uint8x16_t t_data = vld1q_u8(in.ptr() - stride); @@ -183,7 +183,7 @@ void NEDerivativeKernel::derivative_xy(const Window &window) const size_t stride = _input->info()->strides_in_bytes()[1]; /* Apply 1-D centered point discrete derivative masks ([-1 0 1] and [-1 0 1]^T) along the X and Y directions */ - execute_window_loop(window, [&](const Coordinates & id) + execute_window_loop(window, [&](const Coordinates &) { /* Load top, bottom, left and right data */ const uint8x16_t t_data = vld1q_u8(in.ptr() - stride); -- cgit v1.2.1