From c577f2c6a3b4ddb6ba87a882723c53a248afbeba Mon Sep 17 00:00:00 2001 From: telsoa01 Date: Fri, 31 Aug 2018 09:22:23 +0100 Subject: Release 18.08 --- src/armnn/memory/OffsetMemoryPool.cpp | 84 +++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 src/armnn/memory/OffsetMemoryPool.cpp (limited to 'src/armnn/memory/OffsetMemoryPool.cpp') diff --git a/src/armnn/memory/OffsetMemoryPool.cpp b/src/armnn/memory/OffsetMemoryPool.cpp new file mode 100644 index 0000000000..cae79c0a86 --- /dev/null +++ b/src/armnn/memory/OffsetMemoryPool.cpp @@ -0,0 +1,84 @@ +// +// Copyright © 2017 Arm Ltd. All rights reserved. +// See LICENSE file in the project root for full license information. +// +#include "OffsetMemoryPool.hpp" + +#include "boost/assert.hpp" + +#include + +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(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 OffsetMemoryPool::duplicate() +{ + BOOST_ASSERT(m_Allocator); + return std::make_unique(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 \ No newline at end of file -- cgit v1.2.1