aboutsummaryrefslogtreecommitdiff
path: root/src/backends/tosaCommon/operatorMappings/TosaOperatorUtils.hpp
diff options
context:
space:
mode:
authorCathal Corbett <cathal.corbett@arm.com>2024-06-27 14:53:50 +0100
committerCathal Corbett <cathal.corbett@arm.com>2024-06-28 12:28:22 +0100
commit66d0e7d5c6d3c271f72848a180616ebc2e3403cc (patch)
treedab3b4433d4e2145583b21084df415fcfd277340 /src/backends/tosaCommon/operatorMappings/TosaOperatorUtils.hpp
parent7177b72cdd36c0a5b0b52a5b3034b1c2b0f8a3ec (diff)
downloadarmnn-66d0e7d5c6d3c271f72848a180616ebc2e3403cc.tar.gz
IVGCVSW-8443 Implement Activation:ReLu in TosaRef
Signed-off-by: Cathal Corbett <cathal.corbett@arm.com> Change-Id: I2a1f7be2b0b4558b0e0e8dbd2350ccf21b5babf8
Diffstat (limited to 'src/backends/tosaCommon/operatorMappings/TosaOperatorUtils.hpp')
-rw-r--r--src/backends/tosaCommon/operatorMappings/TosaOperatorUtils.hpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/backends/tosaCommon/operatorMappings/TosaOperatorUtils.hpp b/src/backends/tosaCommon/operatorMappings/TosaOperatorUtils.hpp
index f566504a40..18bdbe3318 100644
--- a/src/backends/tosaCommon/operatorMappings/TosaOperatorUtils.hpp
+++ b/src/backends/tosaCommon/operatorMappings/TosaOperatorUtils.hpp
@@ -502,10 +502,3 @@ inline void CreateConstTosaOperator(const std::string& outputName,
tensor = new TosaSerializationTensor(outputName, shape, dtype, uint8Data);
ARMNN_THROW_MSG_IF_FALSE(tensor, armnn::Exception, "CreateConstTosaOperator: failed to created tensor");
}
-
-// Macro to preserve usage of a code block as the TOSA library version advances. Parameters
-// specify the minimum version required by the code block.
-#define TOSA_COMPAT_VERSION(_major, _minor, _patch) \
- (TOSA_VERSION_MAJOR >= _major) || \
- (TOSA_VERSION_MINOR >= _minor) || \
- (TOSA_VERSION_PATCH >= _patch)