aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancis Murtagh <francis.murtagh@arm.com>2021-08-17 16:46:41 +0100
committerMatthew Sloyan <matthew.sloyan@arm.com>2021-08-17 17:56:31 +0100
commit52943a136749d4955f07473e4b8b5f70377bd95b (patch)
tree84e68fbb53883548a862d13d8ad46957ad8d6767
parent77349287c26ec5ada64945b0a37d738acdad4f8e (diff)
downloadarmnn-52943a136749d4955f07473e4b8b5f70377bd95b.tar.gz
IVGCVSW-6073 Return Backend API Version to 1.0
* Backend API is still unstable and we shouldn't start to increment until we are ready, the change it was incremented in originally was also a major break due to the addition of a virtual method which would misalign the v-table. Signed-off-by: Francis Murtagh <francis.murtagh@arm.com> Change-Id: I9c15bba29fe3b3258ae592e96889402f950b2a95
-rw-r--r--include/armnn/backends/IBackendInternal.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/armnn/backends/IBackendInternal.hpp b/include/armnn/backends/IBackendInternal.hpp
index 626746465f..2045ba2fc0 100644
--- a/include/armnn/backends/IBackendInternal.hpp
+++ b/include/armnn/backends/IBackendInternal.hpp
@@ -183,7 +183,7 @@ public:
MemorySourceFlags outputFlags);
/// Returns the version of the Backend API
- static constexpr BackendVersion GetApiVersion() { return BackendVersion(1, 1); }
+ static constexpr BackendVersion GetApiVersion() { return BackendVersion(1, 0); }
/// Returns a BackendCapability if the backend lists the capability
/// The BackendCapability must then be inspected to check whether or not that BackendCapability is supported