From d7fca093be53b314e100e15a8fa080cb506b60a3 Mon Sep 17 00:00:00 2001 From: David Monahan Date: Thu, 12 Jan 2023 14:53:34 +0000 Subject: IVGCVSW-7173 Add Rsqrt to Tosa Ref Backend * Added ElementwiseUnary support with a mapping for Rsqrt * Added unittests * Added Rsqrt EndtoEnd tests for all backends * Changed TosaRefLayerSupport to default to false on unsupported layers Signed-off-by: David Monahan Change-Id: I3eaa9c684647ead61520a563815581aa68bee51b --- src/backends/tosaCommon/operatorMappings/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/backends/tosaCommon/operatorMappings/CMakeLists.txt') diff --git a/src/backends/tosaCommon/operatorMappings/CMakeLists.txt b/src/backends/tosaCommon/operatorMappings/CMakeLists.txt index 2ec052cd43..26f51b643f 100644 --- a/src/backends/tosaCommon/operatorMappings/CMakeLists.txt +++ b/src/backends/tosaCommon/operatorMappings/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright © 2022 Arm Ltd and Contributors. All rights reserved. +# Copyright © 2022-2023 Arm Ltd and Contributors. All rights reserved. # SPDX-License-Identifier: MIT # @@ -14,6 +14,8 @@ list(APPEND armnnTosaBackendOperators_sources Conv2dOperator.cpp ElementwiseBinaryOperator.hpp ElementwiseBinaryOperator.cpp + ElementwiseUnaryOperator.cpp + ElementwiseUnaryOperator.hpp Pooling2DOperator.hpp Pooling2DOperator.cpp ReshapeOperator.hpp -- cgit v1.2.1