aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/memory/IPoolManager.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/memory/IPoolManager.hpp')
-rw-r--r--src/armnn/memory/IPoolManager.hpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/armnn/memory/IPoolManager.hpp b/src/armnn/memory/IPoolManager.hpp
new file mode 100644
index 0000000000..9b06152538
--- /dev/null
+++ b/src/armnn/memory/IPoolManager.hpp
@@ -0,0 +1,21 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// See LICENSE file in the project root for full license information.
+//
+#pragma once
+
+#include "arm_compute/runtime/IPoolManager.h"
+
+namespace armnn
+{
+
+class IPoolManager : public arm_compute::IPoolManager {
+public:
+ // Allocates all pools within the pool manager
+ virtual void AllocatePools() = 0;
+
+ // Releases all pools within the pool manager
+ virtual void ReleasePools() = 0;
+};
+
+} // namespace armnn \ No newline at end of file