aboutsummaryrefslogtreecommitdiff
path: root/src/backends/aclCommon/memory/BlobMemoryPool.hpp
blob: 4d42e6ee7a82924b9bb0e6a557da1db310724f7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once

#include "IMemoryPool.hpp"

#include <arm_compute/runtime/IAllocator.h>
#include <arm_compute/runtime/Types.h>

namespace armnn
{

/** Blob memory pool */
class BlobMemoryPool : public IMemoryPool
{
public:
    BlobMemoryPool(arm_compute::IAllocator* allocator, std::vector<size_t> blobSizes);

    ~BlobMemoryPool();

    BlobMemoryPool(const BlobMemoryPool&) = delete;

    BlobMemoryPool& operator=(const BlobMemoryPool&) = delete;

    BlobMemoryPool(BlobMemoryPool&&) = default;

    BlobMemoryPool& operator=(BlobMemoryPool&&) = default;

    void acquire(arm_compute::MemoryMappings &handles) override;
    void release(arm_compute::MemoryMappings &handles) override;

    arm_compute::MappingType mapping_type() const override;

    std::unique_ptr<arm_compute::IMemoryPool> duplicate() override;

    void AllocatePool() override;
    void ReleasePool() override;

private:
    /// Allocator to use for internal allocation
    arm_compute::IAllocator* m_Allocator;

    /// Vector holding all the memory blobs
    std::vector<void*> m_Blobs;

    /// Sizes of each memory blob
    std::vector<size_t> m_BlobSizes;

    /// Flag indicating whether memory has been allocated for the pool
    bool m_MemoryAllocated;
};

} // namespace armnn