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/IPoolManager.hpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/backends/aclCommon/memory/IPoolManager.hpp (limited to 'src/backends/aclCommon/memory/IPoolManager.hpp') diff --git a/src/backends/aclCommon/memory/IPoolManager.hpp b/src/backends/aclCommon/memory/IPoolManager.hpp new file mode 100644 index 0000000000..be15fdd57e --- /dev/null +++ b/src/backends/aclCommon/memory/IPoolManager.hpp @@ -0,0 +1,21 @@ +// +// Copyright © 2017 Arm Ltd. All rights reserved. +// SPDX-License-Identifier: MIT +// +#pragma once + +#include + +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 -- cgit v1.2.1