aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/memory/BlobMemoryPool.cpp
blob: 8b0a957bb0040f25167f0e64f94c75e915c7cbaa (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#include "BlobMemoryPool.hpp"

#include <boost/assert.hpp>

namespace armnn
{

BlobMemoryPool::BlobMemoryPool(arm_compute::IAllocator* allocator, std::vector<size_t> blobSizes)
        : m_Allocator(allocator)
        , m_Blobs()
        , m_BlobSizes(std::move(blobSizes))
        , m_MemoryAllocated(false)
{
    AllocatePool();
}

BlobMemoryPool::~BlobMemoryPool()
{
    ReleasePool();
}

void BlobMemoryPool::acquire(arm_compute::MemoryMappings& handles)
{
    // Set memory to handlers
    for (auto& handle : handles)
    {
        BOOST_ASSERT(handle.first);
        *handle.first = m_Blobs[handle.second];
    }
}

void BlobMemoryPool::release(arm_compute::MemoryMappings &handles)
{
    for (auto& handle : handles)
    {
        BOOST_ASSERT(handle.first);
        *handle.first = nullptr;
    }
}

arm_compute::MappingType BlobMemoryPool::mapping_type() const
{
    return arm_compute::MappingType::BLOBS;
}

std::unique_ptr<arm_compute::IMemoryPool> BlobMemoryPool::duplicate()
{
    BOOST_ASSERT(m_Allocator);
    return std::make_unique<BlobMemoryPool>(m_Allocator, m_BlobSizes);
}

void BlobMemoryPool::AllocatePool()
{
    if (!m_MemoryAllocated)
    {
        BOOST_ASSERT(m_Allocator);

        for (const auto& blobSize : m_BlobSizes)
        {
            m_Blobs.push_back(m_Allocator->allocate(blobSize, 0));
        }

        m_MemoryAllocated = true;
    }
}

void BlobMemoryPool::ReleasePool()
{
    if (m_MemoryAllocated)
    {
        BOOST_ASSERT(m_Allocator);

        for (auto& blob : m_Blobs)
        {
            m_Allocator->free(blob);
        }

        m_Blobs.clear();

        m_MemoryAllocated = false;
    }
}

} // namespace armnn