From 0d7963cdb0d12b206bd2963625a899ae9bb2f288 Mon Sep 17 00:00:00 2001 From: Francis Murtagh Date: Wed, 17 Jan 2024 09:39:30 +0000 Subject: Bugfix: Remove implicit sign conversion causing -Werror=sign-conversion Signed-off-by: Francis Murtagh Change-Id: If2d5005889b8b0011e4592b46276367798556751 --- src/backends/neon/NeonLayerSupport.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/backends/neon/NeonLayerSupport.cpp b/src/backends/neon/NeonLayerSupport.cpp index 4be5b7cb4e..ee8f6f28f0 100644 --- a/src/backends/neon/NeonLayerSupport.cpp +++ b/src/backends/neon/NeonLayerSupport.cpp @@ -1,5 +1,5 @@ // -// Copyright © 2017-2023 Arm Ltd and Contributors. All rights reserved. +// Copyright © 2017-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // @@ -13,6 +13,7 @@ #include #include +#include #include #if defined(ARMCOMPUTENEON_ENABLED) @@ -438,8 +439,9 @@ bool IsLayerTypeSupported(const LayerType& type, throw InvalidArgumentException("Invalid number of FusedLayer TensorInfos."); } - std::vector inputInfos(infos.begin(), infos.begin() + fusedDescriptor.m_NumInputSlots); - std::vector outputInfos(infos.begin() + fusedDescriptor.m_NumInputSlots, infos.end()); + auto it = infos.begin() + numeric_cast(fusedDescriptor.m_NumInputSlots); + std::vector inputInfos(infos.begin(), it); + std::vector outputInfos(it, infos.end()); return support.IsFusedSupported({inputInfos.begin(), inputInfos.end()}, {outputInfos.begin(), outputInfos.end()}, -- cgit v1.2.1