From f9aeef0e036df176699aa96d30d2ca8d7546534e Mon Sep 17 00:00:00 2001 From: Aron Virginas-Tar Date: Fri, 12 Oct 2018 15:18:03 +0100 Subject: IVGCVSW-2006: Move ACL memory manager source code under aclCommon Change-Id: Ie1c74a18de5c3dd1cd5285c222bd6327489c1508 --- src/backends/aclCommon/memory/IMemoryPool.hpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/backends/aclCommon/memory/IMemoryPool.hpp (limited to 'src/backends/aclCommon/memory/IMemoryPool.hpp') 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 + +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 -- cgit v1.2.1