aboutsummaryrefslogtreecommitdiff
path: root/src/backends/aclCommon/memory/IMemoryPool.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/backends/aclCommon/memory/IMemoryPool.hpp')
-rw-r--r--src/backends/aclCommon/memory/IMemoryPool.hpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/backends/aclCommon/memory/IMemoryPool.hpp b/src/backends/aclCommon/memory/IMemoryPool.hpp
new file mode 100644
index 0000000000..99130699e0
--- /dev/null
+++ b/src/backends/aclCommon/memory/IMemoryPool.hpp
@@ -0,0 +1,22 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+#pragma once
+
+#include <arm_compute/runtime/IMemoryPool.h>
+
+namespace armnn
+{
+
+class IMemoryPool : public arm_compute::IMemoryPool
+{
+public:
+ /// Allocates memory for the entire pool
+ virtual void AllocatePool() = 0;
+
+ /// Releases all memory associated with the pool
+ virtual void ReleasePool() = 0;
+};
+
+} // namespace armnn \ No newline at end of file