aboutsummaryrefslogtreecommitdiff
path: root/src/backends/backendsCommon/BackendContextRegistry.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/backends/backendsCommon/BackendContextRegistry.hpp')
-rw-r--r--src/backends/backendsCommon/BackendContextRegistry.hpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/backends/backendsCommon/BackendContextRegistry.hpp b/src/backends/backendsCommon/BackendContextRegistry.hpp
deleted file mode 100644
index 23830a0105..0000000000
--- a/src/backends/backendsCommon/BackendContextRegistry.hpp
+++ /dev/null
@@ -1,28 +0,0 @@
-//
-// Copyright © 2017 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-#pragma once
-
-#include "IBackendContext.hpp"
-#include "RegistryCommon.hpp"
-
-#include <armnn/IRuntime.hpp>
-#include <armnn/Types.hpp>
-
-namespace armnn
-{
-
-using BackendContextRegistry = RegistryCommon<IBackendContext,
- IBackendContextUniquePtr,
- IRuntime::CreationOptions>;
-
-BackendContextRegistry& BackendContextRegistryInstance();
-
-template <>
-struct RegisteredTypeName<IBackendContext>
-{
- static const char * Name() { return "IBackendContext"; }
-};
-
-} // namespace armnn