aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/Types.hpp
diff options
context:
space:
mode:
authorDavid Beck <david.beck@arm.com>2018-10-24 17:09:46 +0100
committerDavid Beck <david.beck@arm.com>2018-10-26 10:25:09 +0100
commitd4dfa684941a21314b70593d01b0fc2167eebad4 (patch)
treeeaf561f9bdf5f5643702a5a6f24ed822dea9c4c2 /include/armnn/Types.hpp
parent0a088a61d016bf7af77e2d73d0988223a5f98ef1 (diff)
downloadarmnn-d4dfa684941a21314b70593d01b0fc2167eebad4.tar.gz
IVGCVSW-2056 + IVGCVSW-2064 : move ClContextControl to the ClBackend
Change-Id: Ice19d3f763298bc14585267df389e99df846320d
Diffstat (limited to 'include/armnn/Types.hpp')
-rw-r--r--include/armnn/Types.hpp16
1 files changed, 2 insertions, 14 deletions
diff --git a/include/armnn/Types.hpp b/include/armnn/Types.hpp
index cd6e17be37..2249a365d2 100644
--- a/include/armnn/Types.hpp
+++ b/include/armnn/Types.hpp
@@ -139,20 +139,6 @@ enum class OutputShapeRounding
Ceiling = 1
};
-/// Each backend should implement an IBackend.
-class IBackend
-{
-protected:
- IBackend() {}
- virtual ~IBackend() {}
-
-public:
- virtual const BackendId& GetId() const = 0;
-};
-
-using IBackendSharedPtr = std::shared_ptr<IBackend>;
-using IBackendUniquePtr = std::unique_ptr<IBackend, void(*)(IBackend* backend)>;
-
/// Device specific knowledge to be passed to the optimizer.
class IDeviceSpec
{
@@ -222,4 +208,6 @@ private:
/// Define LayerGuid type.
using LayerGuid = unsigned int;
+struct EmptyInitializer {};
+
} // namespace armnn