From cedb78f24d68a5f4ad3483d21c14798653705f2f Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Thu, 23 Aug 2018 10:23:52 +0900 Subject: COMPMID-1536: Github PR: Removed redundant const qualifier on cast GCC (>=8) yields warning w/ -Wignored-qualifers (enabled by -Wextra) on such usage. Change-Id: Ib3284b60cec0ec4faf8c6e6c1e2980cbf5731973 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/145384 Tested-by: Jenkins Reviewed-by: Georgios Pinitas --- src/core/NEON/kernels/NEMinMaxLayerKernel.cpp | 6 +++--- src/core/NEON/kernels/NEMinMaxLocationKernel.cpp | 4 ++-- .../arm_gemm/transforms/a32_transpose_interleave_8way_32bit.hpp | 4 ++-- .../arm_gemm/transforms/a64_transpose_interleave_12way_16bit.hpp | 4 ++-- .../arm_gemm/transforms/a64_transpose_interleave_24way_16bit.hpp | 4 ++-- 5 files changed, 11 insertions(+), 11 deletions(-) (limited to 'src/core/NEON') diff --git a/src/core/NEON/kernels/NEMinMaxLayerKernel.cpp b/src/core/NEON/kernels/NEMinMaxLayerKernel.cpp index d93dc09ff9..5d1b4b3aa4 100644 --- a/src/core/NEON/kernels/NEMinMaxLayerKernel.cpp +++ b/src/core/NEON/kernels/NEMinMaxLayerKernel.cpp @@ -147,7 +147,7 @@ void NEMinMaxLayerKernel::run(const Window &window, const ThreadInfo &info) execute_window_loop(window_input, [&](const Coordinates & id) { int x = x_start; - const auto in_ptr = reinterpret_cast(input.ptr() + id_batch[1] * _input->info()->strides_in_bytes()[3]); + const auto in_ptr = reinterpret_cast(input.ptr() + id_batch[1] * _input->info()->strides_in_bytes()[3]); // Vector loop for(; x <= x_end - 8; x += 8) @@ -181,7 +181,7 @@ void NEMinMaxLayerKernel::run(const Window &window, const ThreadInfo &info) const float min_i = std::min(vget_lane_f32(carry_min, 0), carry_min_scalar); const float max_i = std::max(vget_lane_f32(carry_max, 0), carry_max_scalar); - auto out_ptr = reinterpret_cast(output.ptr()); + auto out_ptr = reinterpret_cast(output.ptr()); // Perform reduction of local min/max values update_min_max(out_ptr, min_i, max_i); @@ -205,7 +205,7 @@ void NEMinMaxLayerKernel::reset() execute_window_loop(window_output, [&](const Coordinates & id) { - vst1_f32(reinterpret_cast(output.ptr()), reset_values); + vst1_f32(reinterpret_cast(output.ptr()), reset_values); }, output); } diff --git a/src/core/NEON/kernels/NEMinMaxLocationKernel.cpp b/src/core/NEON/kernels/NEMinMaxLocationKernel.cpp index b90e81339b..befece2741 100644 --- a/src/core/NEON/kernels/NEMinMaxLocationKernel.cpp +++ b/src/core/NEON/kernels/NEMinMaxLocationKernel.cpp @@ -212,7 +212,7 @@ void NEMinMaxKernel::minmax_S16(Window win) execute_window_loop(win, [&](const Coordinates & id) { int x = x_start; - const auto in_ptr = reinterpret_cast(input.ptr()); + const auto in_ptr = reinterpret_cast(input.ptr()); // Vector loop for(; x <= x_end - 16; x += 16) @@ -271,7 +271,7 @@ void NEMinMaxKernel::minmax_F32(Window win) execute_window_loop(win, [&](const Coordinates & id) { int x = x_start; - const auto in_ptr = reinterpret_cast(input.ptr()); + const auto in_ptr = reinterpret_cast(input.ptr()); // Vector loop for(; x <= x_end - 8; x += 8) diff --git a/src/core/NEON/kernels/arm_gemm/transforms/a32_transpose_interleave_8way_32bit.hpp b/src/core/NEON/kernels/arm_gemm/transforms/a32_transpose_interleave_8way_32bit.hpp index 56a226fce0..587bec366a 100644 --- a/src/core/NEON/kernels/arm_gemm/transforms/a32_transpose_interleave_8way_32bit.hpp +++ b/src/core/NEON/kernels/arm_gemm/transforms/a32_transpose_interleave_8way_32bit.hpp @@ -37,7 +37,7 @@ inline void TransformImpl<8, 1, true, 4, 4, false>::Transform( // Redirect to a 16x uint16_t specialisation TransformImpl<16, 1, true, 2, 2, false>::Transform( reinterpret_cast(out), - reinterpret_cast(in), + reinterpret_cast(in), stride*2, x0*2, xmax*2, k0, kmax ); } @@ -52,7 +52,7 @@ inline void TransformImpl<16, 1, true, 2, 2, false>::Transform( // Redirect to a uint16_t specialisation Transform( reinterpret_cast(out), - reinterpret_cast(in), + reinterpret_cast(in), stride, x0, xmax, k0, kmax ); } diff --git a/src/core/NEON/kernels/arm_gemm/transforms/a64_transpose_interleave_12way_16bit.hpp b/src/core/NEON/kernels/arm_gemm/transforms/a64_transpose_interleave_12way_16bit.hpp index 16fa31eb67..ec54ce00ea 100644 --- a/src/core/NEON/kernels/arm_gemm/transforms/a64_transpose_interleave_12way_16bit.hpp +++ b/src/core/NEON/kernels/arm_gemm/transforms/a64_transpose_interleave_12way_16bit.hpp @@ -37,7 +37,7 @@ inline void TransformImpl<6, 1, true, 4, 4, false>::Transform( // Redirect to a 12 x uint16_t specialisation TransformImpl<12, 1, true, 2, 2, false>::Transform( reinterpret_cast(out), - reinterpret_cast(in), + reinterpret_cast(in), stride*2, x0*2, xmax*2, k0, kmax ); } @@ -52,7 +52,7 @@ inline void TransformImpl<12, 1, true, 2, 2, false>::Transform( // Redirect to a uint16_t specialisation Transform( reinterpret_cast(out), - reinterpret_cast(in), + reinterpret_cast(in), stride, x0, xmax, k0, kmax ); } diff --git a/src/core/NEON/kernels/arm_gemm/transforms/a64_transpose_interleave_24way_16bit.hpp b/src/core/NEON/kernels/arm_gemm/transforms/a64_transpose_interleave_24way_16bit.hpp index c39dd82119..80420dd717 100644 --- a/src/core/NEON/kernels/arm_gemm/transforms/a64_transpose_interleave_24way_16bit.hpp +++ b/src/core/NEON/kernels/arm_gemm/transforms/a64_transpose_interleave_24way_16bit.hpp @@ -37,7 +37,7 @@ inline void TransformImpl<12, 1, true, 4, 4, false>::Transform( // Redirect to a 24 x uint16_t specialisation TransformImpl<24, 1, true, 2, 2, false>::Transform( reinterpret_cast(out), - reinterpret_cast(in), + reinterpret_cast(in), stride*2, x0*2, xmax*2, k0, kmax ); } @@ -52,7 +52,7 @@ inline void TransformImpl<24, 1, true, 2, 2, false>::Transform( // Redirect to a uint16_t specialisation Transform( reinterpret_cast(out), - reinterpret_cast(in), + reinterpret_cast(in), stride, x0, xmax, k0, kmax ); } -- cgit v1.2.1