From f9aeef0e036df176699aa96d30d2ca8d7546534e Mon Sep 17 00:00:00 2001 From: Aron Virginas-Tar Date: Fri, 12 Oct 2018 15:18:03 +0100 Subject: IVGCVSW-2006: Move ACL memory manager source code under aclCommon Change-Id: Ie1c74a18de5c3dd1cd5285c222bd6327489c1508 --- src/backends/aclCommon/memory/BlobMemoryPool.cpp | 88 ++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 src/backends/aclCommon/memory/BlobMemoryPool.cpp (limited to 'src/backends/aclCommon/memory/BlobMemoryPool.cpp') diff --git a/src/backends/aclCommon/memory/BlobMemoryPool.cpp b/src/backends/aclCommon/memory/BlobMemoryPool.cpp new file mode 100644 index 0000000000..8b0a957bb0 --- /dev/null +++ b/src/backends/aclCommon/memory/BlobMemoryPool.cpp @@ -0,0 +1,88 @@ +// +// Copyright © 2017 Arm Ltd. All rights reserved. +// SPDX-License-Identifier: MIT +// +#include "BlobMemoryPool.hpp" + +#include + +namespace armnn +{ + +BlobMemoryPool::BlobMemoryPool(arm_compute::IAllocator* allocator, std::vector 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 BlobMemoryPool::duplicate() +{ + BOOST_ASSERT(m_Allocator); + return std::make_unique(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 \ No newline at end of file -- cgit v1.2.1