From 52943a136749d4955f07473e4b8b5f70377bd95b Mon Sep 17 00:00:00 2001 From: Francis Murtagh Date: Tue, 17 Aug 2021 16:46:41 +0100 Subject: 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 Change-Id: I9c15bba29fe3b3258ae592e96889402f950b2a95 --- include/armnn/backends/IBackendInternal.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1