blob: e3d7f0fb650bdd98ea116362a045c5a1f43260dc [file] [log] [blame]
Georgios Pinitasbaf174e2017-09-08 19:47:30 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
Georgios Pinitasbaf174e2017-09-08 19:47:30 +01003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#include "arm_compute/runtime/BlobMemoryPool.h"
25
26#include "arm_compute/core/Error.h"
Georgios Pinitasd9e5b192017-09-19 15:03:20 +010027#include "arm_compute/runtime/IAllocator.h"
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010028#include "arm_compute/runtime/IMemoryPool.h"
29#include "arm_compute/runtime/Types.h"
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010030
31#include <vector>
32
33using namespace arm_compute;
34
Georgios Pinitas555f1c22018-12-14 17:11:20 +000035BlobMemoryPool::BlobMemoryPool(IAllocator *allocator, std::vector<BlobInfo> blob_info)
36 : _allocator(allocator), _blobs(), _blob_info(std::move(blob_info))
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010037{
38 ARM_COMPUTE_ERROR_ON(!allocator);
Georgios Pinitas555f1c22018-12-14 17:11:20 +000039 allocate_blobs(_blob_info);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010040}
41
42BlobMemoryPool::~BlobMemoryPool()
43{
44 ARM_COMPUTE_ERROR_ON(!_allocator);
45 free_blobs();
46}
47
48void BlobMemoryPool::acquire(MemoryMappings &handles)
49{
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010050 // Set memory to handlers
51 for(auto &handle : handles)
52 {
53 ARM_COMPUTE_ERROR_ON(handle.first == nullptr);
Georgios Pinitasdf310362018-11-14 13:16:56 +000054 handle.first->set_region(_blobs[handle.second].get());
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010055 }
56}
57
58void BlobMemoryPool::release(MemoryMappings &handles)
59{
60 for(auto &handle : handles)
61 {
62 ARM_COMPUTE_ERROR_ON(handle.first == nullptr);
Georgios Pinitasdf310362018-11-14 13:16:56 +000063 handle.first->set_region(nullptr);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010064 }
65}
66
67MappingType BlobMemoryPool::mapping_type() const
68{
69 return MappingType::BLOBS;
70}
71
72std::unique_ptr<IMemoryPool> BlobMemoryPool::duplicate()
73{
74 ARM_COMPUTE_ERROR_ON(!_allocator);
Georgios Pinitas40f51a62020-11-21 03:04:18 +000075 return std::make_unique<BlobMemoryPool>(_allocator, _blob_info);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010076}
77
Georgios Pinitas555f1c22018-12-14 17:11:20 +000078void BlobMemoryPool::allocate_blobs(const std::vector<BlobInfo> &blob_info)
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010079{
80 ARM_COMPUTE_ERROR_ON(!_allocator);
81
Georgios Pinitas555f1c22018-12-14 17:11:20 +000082 for(const auto &bi : blob_info)
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010083 {
Georgios Pinitas555f1c22018-12-14 17:11:20 +000084 _blobs.push_back(_allocator->make_region(bi.size, bi.alignment));
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010085 }
86}
87
88void BlobMemoryPool::free_blobs()
89{
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010090 _blobs.clear();
Matthew Bentham758b5ba2020-03-05 23:37:48 +000091}