blob: 5f33ed3537223adb27c8e29c197b1d608a9f30ac [file] [log] [blame]
Kaizenbf8b01d2017-10-12 14:26:51 +01001/*
Jenkinsb3a371b2018-05-23 11:36:53 +01002 * Copyright (c) 2018 ARM Limited.
Kaizenbf8b01d2017-10-12 14:26:51 +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/graph/GraphContext.h"
Jenkins52ba29e2018-08-29 15:32:11 +000025
26#include "arm_compute/graph.h"
27#include "arm_compute/graph/Utils.h"
Kaizenbf8b01d2017-10-12 14:26:51 +010028
Jenkinsb3a371b2018-05-23 11:36:53 +010029namespace arm_compute
Kaizenbf8b01d2017-10-12 14:26:51 +010030{
Jenkinsb3a371b2018-05-23 11:36:53 +010031namespace graph
Kaizenbf8b01d2017-10-12 14:26:51 +010032{
Kaizenbf8b01d2017-10-12 14:26:51 +010033GraphContext::GraphContext()
Jenkinsb3a371b2018-05-23 11:36:53 +010034 : _config(), _memory_managers()
Kaizenbf8b01d2017-10-12 14:26:51 +010035{
36}
37
Jenkins52ba29e2018-08-29 15:32:11 +000038GraphContext::~GraphContext()
39{
40 _memory_managers.clear();
41 release_default_graph_context(*this);
42}
43
Jenkinsb3a371b2018-05-23 11:36:53 +010044const GraphConfig &GraphContext::config() const
Kaizenbf8b01d2017-10-12 14:26:51 +010045{
Jenkinsb3a371b2018-05-23 11:36:53 +010046 return _config;
Kaizenbf8b01d2017-10-12 14:26:51 +010047}
48
Jenkinsb3a371b2018-05-23 11:36:53 +010049void GraphContext::set_config(const GraphConfig &config)
Kaizenbf8b01d2017-10-12 14:26:51 +010050{
Jenkinsb3a371b2018-05-23 11:36:53 +010051 _config = config;
52}
53
54bool GraphContext::insert_memory_management_ctx(MemoryManagerContext &&memory_ctx)
55{
56 Target target = memory_ctx.target;
57 if(target == Target::UNSPECIFIED || _memory_managers.find(target) != std::end(_memory_managers))
58 {
59 return false;
60 }
61
62 _memory_managers[target] = std::move(memory_ctx);
63 return true;
64}
65
66MemoryManagerContext *GraphContext::memory_management_ctx(Target target)
67{
68 return (_memory_managers.find(target) != std::end(_memory_managers)) ? &_memory_managers[target] : nullptr;
69}
70
71std::map<Target, MemoryManagerContext> &GraphContext::memory_managers()
72{
73 return _memory_managers;
74}
75
76void GraphContext::finalize()
77{
78 for(auto &mm_obj : _memory_managers)
79 {
80 // Finalize intra layer memory manager
81 if(mm_obj.second.intra_mm != nullptr)
82 {
83 mm_obj.second.intra_mm->finalize();
84 }
85 // Finalize cross layer memory manager
86 if(mm_obj.second.cross_mm != nullptr)
87 {
88 mm_obj.second.cross_mm->finalize();
89 }
90 }
91}
92} // namespace graph
Jenkins52ba29e2018-08-29 15:32:11 +000093} // namespace arm_compute