aboutsummaryrefslogtreecommitdiff
path: root/src/core/NEON/kernels/NEMinMaxLayerKernel.cpp
diff options
context:
space:
mode:
authorKohei Takahashi <flast@flast.jp>2018-08-23 10:23:52 +0900
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commitcedb78f24d68a5f4ad3483d21c14798653705f2f (patch)
tree6c749b60c03610e2c610f385d0d65aa56b13c3ae /src/core/NEON/kernels/NEMinMaxLayerKernel.cpp
parentba1ffe96eb4563ba7e18b39728d9db373c62f7c3 (diff)
downloadComputeLibrary-cedb78f24d68a5f4ad3483d21c14798653705f2f.tar.gz
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 <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'src/core/NEON/kernels/NEMinMaxLayerKernel.cpp')
-rw-r--r--src/core/NEON/kernels/NEMinMaxLayerKernel.cpp6
1 files changed, 3 insertions, 3 deletions
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<const float *const>(input.ptr() + id_batch[1] * _input->info()->strides_in_bytes()[3]);
+ const auto in_ptr = reinterpret_cast<const float *>(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<float *const>(output.ptr());
+ auto out_ptr = reinterpret_cast<float *>(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<float *const>(output.ptr()), reset_values);
+ vst1_f32(reinterpret_cast<float *>(output.ptr()), reset_values);
},
output);
}