aboutsummaryrefslogtreecommitdiff
path: root/src/backends/aclCommon/memory/OffsetMemoryPool.cpp
blob: 48bea5e845f072d64d370e23ed837eae99c42a30 (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
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#include "OffsetMemoryPool.hpp"

#include <boost/assert.hpp>

#include <algorithm>

namespace armnn
{

OffsetMemoryPool::OffsetMemoryPool(arm_compute::IAllocator* allocator, size_t blobSize)
    : m_Allocator(allocator)
    , m_Blob()
    , m_BlobSize(blobSize)
    , m_MemoryAllocated(false)
{
    AllocatePool();
}

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

void OffsetMemoryPool::acquire(arm_compute::MemoryMappings& handles)
{
    BOOST_ASSERT(m_Blob);

    // Set memory to handlers
    for(auto& handle : handles)
    {
        BOOST_ASSERT(handle.first);
        *handle.first = reinterpret_cast<uint8_t*>(m_Blob) + handle.second;
    }
}

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

arm_compute::MappingType OffsetMemoryPool::mapping_type() const
{
    return arm_compute::MappingType::OFFSETS;
}

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

void OffsetMemoryPool::AllocatePool()
{
    if (!m_MemoryAllocated)
    {
        BOOST_ASSERT(m_Allocator);
        m_Blob = m_Allocator->allocate(m_BlobSize, 0);

        m_MemoryAllocated = true;
    }
}

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

        m_Allocator->free(m_Blob);
        m_Blob = nullptr;

        m_MemoryAllocated = false;
    }
}

} // namespace armnn