aboutsummaryrefslogtreecommitdiff
path: root/src/backends/aclCommon/memory/PoolManager.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/PoolManager.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/PoolManager.hpp')
-rw-r--r--src/backends/aclCommon/memory/PoolManager.hpp57
1 files changed, 0 insertions, 57 deletions
diff --git a/src/backends/aclCommon/memory/PoolManager.hpp b/src/backends/aclCommon/memory/PoolManager.hpp
deleted file mode 100644
index 39bc665415..0000000000
--- a/src/backends/aclCommon/memory/PoolManager.hpp
+++ /dev/null
@@ -1,57 +0,0 @@
-//
-// Copyright © 2017 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-#pragma once
-
-#include "IPoolManager.hpp"
-
-#include <arm_compute/runtime/IMemoryPool.h>
-#include <arm_compute/core/Error.h>
-
-#include <support/Mutex.h>
-#include <support/Semaphore.h>
-
-#include <cstddef>
-#include <list>
-#include <memory>
-
-namespace armnn
-{
-
-class PoolManager : public IPoolManager
-{
-public:
- PoolManager();
-
- PoolManager(const PoolManager &) = delete;
-
- PoolManager &operator=(const PoolManager &) = delete;
-
- PoolManager(PoolManager &&) = default;
-
- PoolManager &operator=(PoolManager &&) = default;
-
- arm_compute::IMemoryPool *lock_pool() override;
- void unlock_pool(arm_compute::IMemoryPool *pool) override;
- void register_pool(std::unique_ptr<arm_compute::IMemoryPool> pool) override;
- size_t num_pools() const override;
-
- void AllocatePools() override;
- void ReleasePools() override;
-
-private:
- /// List of free pools
- std::list<std::unique_ptr<arm_compute::IMemoryPool>> m_FreePools;
-
- /// List of occupied pools
- std::list<std::unique_ptr<arm_compute::IMemoryPool>> m_OccupiedPools;
-
- /// Semaphore to control the queues
- std::unique_ptr<arm_compute::Semaphore> m_Semaphore;
-
- /// Mutex to control access to the queues
- mutable arm_compute::Mutex m_Mutex;
-};
-
-} // namespace armnn \ No newline at end of file