From c577f2c6a3b4ddb6ba87a882723c53a248afbeba Mon Sep 17 00:00:00 2001 From: telsoa01 Date: Fri, 31 Aug 2018 09:22:23 +0100 Subject: Release 18.08 --- src/armnn/memory/IPoolManager.hpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/armnn/memory/IPoolManager.hpp (limited to 'src/armnn/memory/IPoolManager.hpp') 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 -- cgit v1.2.1