aboutsummaryrefslogtreecommitdiff
path: root/src/backends/aclCommon/memory/OffsetMemoryPool.hpp
diff options
context:
space:
mode:
authorAron Virginas-Tar <Aron.Virginas-Tar@arm.com>2018-10-31 11:04:01 +0000
committerDavid Beck <david.beck@arm.com>2018-11-08 11:34:44 +0000
commit60578950322491e44b4203fe085c3230ead19c7a (patch)
treee68bd71cb7b90d66d69a3de25561e32a13dd4e17 /src/backends/aclCommon/memory/OffsetMemoryPool.hpp
parentdb49a8880ba869627e884b5ba5245a3932de218d (diff)
downloadarmnn-60578950322491e44b4203fe085c3230ead19c7a.tar.gz
IVGCVSW-1709: Clean up memory manager bodge
* Added quick workaround for the memory management errors in the CL/Neon unit tests Change-Id: I56250db462cdbdc1acc0a5824807d288fb0c1d11
Diffstat (limited to 'src/backends/aclCommon/memory/OffsetMemoryPool.hpp')
-rw-r--r--src/backends/aclCommon/memory/OffsetMemoryPool.hpp54
1 files changed, 0 insertions, 54 deletions
diff --git a/src/backends/aclCommon/memory/OffsetMemoryPool.hpp b/src/backends/aclCommon/memory/OffsetMemoryPool.hpp
deleted file mode 100644
index 25cf8cd638..0000000000
--- a/src/backends/aclCommon/memory/OffsetMemoryPool.hpp
+++ /dev/null
@@ -1,54 +0,0 @@
-//
-// Copyright © 2017 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-#pragma once
-
-#include "IMemoryPool.hpp"
-
-#include <arm_compute/runtime/IAllocator.h>
-#include <arm_compute/runtime/Types.h>
-
-namespace armnn
-{
-
-class OffsetMemoryPool : public IMemoryPool
-{
-public:
- OffsetMemoryPool(arm_compute::IAllocator* allocator, size_t blobSize);
-
- ~OffsetMemoryPool();
-
- OffsetMemoryPool(const OffsetMemoryPool&) = delete;
-
- OffsetMemoryPool& operator=(const OffsetMemoryPool&) = delete;
-
- OffsetMemoryPool(OffsetMemoryPool&&) = default;
-
- OffsetMemoryPool& operator=(OffsetMemoryPool &&) = default;
-
- void acquire(arm_compute::MemoryMappings& handles) override;
- void release(arm_compute::MemoryMappings& handles) override;
-
- arm_compute::MappingType mapping_type() const override;
-
- std::unique_ptr<arm_compute::IMemoryPool> duplicate() override;
-
- void AllocatePool() override;
- void ReleasePool() override;
-
-private:
- /// Allocator to use for internal allocation
- arm_compute::IAllocator* m_Allocator;
-
- /// Memory blob
- void* m_Blob;
-
- /// Size of the allocated memory blob
- size_t m_BlobSize;
-
- /// Flag indicating whether memory has been allocated for the pool
- bool m_MemoryAllocated;
-};
-
-} // namespace armnn \ No newline at end of file