Release 18.08
[platform/upstream/armnn.git] / src / armnn / memory / IPoolManager.hpp
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // See LICENSE file in the project root for full license information.
4 //
5 #pragma once
6
7 #include "arm_compute/runtime/IPoolManager.h"
8
9 namespace armnn
10 {
11
12 class IPoolManager : public arm_compute::IPoolManager {
13 public:
14     // Allocates all pools within the pool manager
15     virtual void AllocatePools() = 0;
16
17     // Releases all pools within the pool manager
18     virtual void ReleasePools() = 0;
19 };
20
21 } // namespace armnn