aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancis Murtagh <francis.murtagh@arm.com>2022-03-01 13:05:30 +0000
committerFrancis Murtagh <francis.murtagh@arm.com>2022-03-02 10:50:07 +0000
commitd398e0c9dee448f42c6313e89371b4724ede0c47 (patch)
treecb121dab6da2e47e4ed883899348d6333cd61daf
parent62fdf0c64834cd5e45d19528de08c5005044c858 (diff)
downloadarmnn-experimental/abi-tests-backend.tar.gz
IVGCVSW-6627 Add Backend interface to ABI compliance checkerexperimental/abi-tests-backend
* Test review, breaking front end interface to ensure no regressions Signed-off-by: Francis Murtagh <francis.murtagh@arm.com> Change-Id: I2b10ededc5eb2bc65aa8dd94fcf47eb886dc83b2
-rw-r--r--include/armnn/Descriptors.hpp2
-rw-r--r--include/armnn/Version.hpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/include/armnn/Descriptors.hpp b/include/armnn/Descriptors.hpp
index 280c18e78c..320ba545a9 100644
--- a/include/armnn/Descriptors.hpp
+++ b/include/armnn/Descriptors.hpp
@@ -39,6 +39,7 @@ struct ActivationDescriptor : BaseDescriptor
: m_Function(ActivationFunction::Sigmoid)
, m_A(0)
, m_B(0)
+ , m_TestBreak(0)
{}
ActivationDescriptor(armnn::ActivationFunction activation,
@@ -61,6 +62,7 @@ struct ActivationDescriptor : BaseDescriptor
float m_A;
/// Beta lower bound value used by the activation functions. (BoundedReLu, Linear, TanH).
float m_B;
+ float m_TestBreak;
};
/// An ArgMinMaxDescriptor for ArgMinMaxLayer
diff --git a/include/armnn/Version.hpp b/include/armnn/Version.hpp
index 7e172246e3..d41c4ec8af 100644
--- a/include/armnn/Version.hpp
+++ b/include/armnn/Version.hpp
@@ -10,7 +10,7 @@
#define STRINGIFY_MACRO(s) #s
// ArmNN version components
-#define ARMNN_MAJOR_VERSION 28
+#define ARMNN_MAJOR_VERSION 29
#define ARMNN_MINOR_VERSION 0
#define ARMNN_PATCH_VERSION 0