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 --- include/armnn/Tensor.hpp | 4 +++- src/backends/neon/NeonLayerSupport.cpp | 8 +++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/include/armnn/Tensor.hpp b/include/armnn/Tensor.hpp index 1bbc19f2f1..2326a0fc65 100644 --- a/include/armnn/Tensor.hpp +++ b/include/armnn/Tensor.hpp @@ -1,5 +1,5 @@ // -// Copyright © 2017,2022-2023 Arm Ltd and Contributors. All rights reserved. +// Copyright © 2017,2022-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once @@ -188,6 +188,8 @@ public: bool operator==(const TensorInfo& other) const; bool operator!=(const TensorInfo& other) const; + using DifferenceType = std::vector::difference_type; + const TensorShape& GetShape() const { return m_Shape; } TensorShape& GetShape() { return m_Shape; } void SetShape(const TensorShape& newShape) { m_Shape = newShape; } 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