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/OffsetLifetimeManager.hpp | 37 ++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/armnn/memory/OffsetLifetimeManager.hpp (limited to 'src/armnn/memory/OffsetLifetimeManager.hpp') diff --git a/src/armnn/memory/OffsetLifetimeManager.hpp b/src/armnn/memory/OffsetLifetimeManager.hpp new file mode 100644 index 0000000000..d6a5698d95 --- /dev/null +++ b/src/armnn/memory/OffsetLifetimeManager.hpp @@ -0,0 +1,37 @@ +// +// Copyright © 2017 Arm Ltd. All rights reserved. +// See LICENSE file in the project root for full license information. +// +#pragma once + +#include "arm_compute/runtime/ISimpleLifetimeManager.h" + +namespace armnn +{ + +class OffsetLifetimeManager : public arm_compute::ISimpleLifetimeManager +{ +public: + OffsetLifetimeManager(); + + OffsetLifetimeManager(const OffsetLifetimeManager&) = delete; + + OffsetLifetimeManager& operator=(const OffsetLifetimeManager&) = delete; + + OffsetLifetimeManager(OffsetLifetimeManager&&) = default; + + OffsetLifetimeManager& operator=(OffsetLifetimeManager&&) = default; + + std::unique_ptr create_pool(arm_compute::IAllocator* allocator) override; + + arm_compute::MappingType mapping_type() const override; + +private: + void update_blobs_and_mappings() override; + +private: + /// Memory blob size + size_t m_BlobSize; +}; + +} // namespace armnn \ No newline at end of file -- cgit v1.2.1