aboutsummaryrefslogtreecommitdiff
path: root/src/core/NEON/kernels/NEROIPoolingLayerKernel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/NEON/kernels/NEROIPoolingLayerKernel.cpp')
-rw-r--r--src/core/NEON/kernels/NEROIPoolingLayerKernel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/NEON/kernels/NEROIPoolingLayerKernel.cpp b/src/core/NEON/kernels/NEROIPoolingLayerKernel.cpp
index b8d20f66bb..708420c67e 100644
--- a/src/core/NEON/kernels/NEROIPoolingLayerKernel.cpp
+++ b/src/core/NEON/kernels/NEROIPoolingLayerKernel.cpp
@@ -89,7 +89,7 @@ void NEROIPoolingLayerKernel::configure(const ITensor *input, const ITensor *roi
input->info()->valid_region().end(1));
AccessWindowStatic output_access(output->info(), 0, 0, pool_info.pooled_width(), pool_info.pooled_height());
- update_window_and_padding(window, input_access, output_access);
+ ARM_COMPUTE_UNUSED(update_window_and_padding(window, input_access, output_access));
output_access.set_valid_region(window, ValidRegion(Coordinates(), output->info()->tensor_shape()));
INEKernel::configure(window);
}