aboutsummaryrefslogtreecommitdiff
path: root/src/backends/aclCommon/memory/IPoolManager.hpp
blob: be15fdd57eae08e4874942fd41d798f48903bef1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#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