blob: 5f33ed3537223adb27c8e29c197b1d608a9f30ac [file] [log] [blame]
Georgios Pinitasff421f22017-10-04 16:53:58 +01001/*
Georgios Pinitasd9eb2752018-04-03 13:44:29 +01002 * Copyright (c) 2018 ARM Limited.
Georgios Pinitasff421f22017-10-04 16:53:58 +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"
Anthony Barbierb6eb3532018-08-08 13:20:04 +010025
26#include "arm_compute/graph.h"
27#include "arm_compute/graph/Utils.h"
Georgios Pinitasff421f22017-10-04 16:53:58 +010028
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010029namespace arm_compute
Georgios Pinitasff421f22017-10-04 16:53:58 +010030{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010031namespace graph
Georgios Pinitasff421f22017-10-04 16:53:58 +010032{
Georgios Pinitasff421f22017-10-04 16:53:58 +010033GraphContext::GraphContext()
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010034 : _config(), _memory_managers()
Georgios Pinitasff421f22017-10-04 16:53:58 +010035{
36}
37
Anthony Barbierb6eb3532018-08-08 13:20:04 +010038GraphContext::~GraphContext()
39{
40 _memory_managers.clear();
41 release_default_graph_context(*this);
42}
43
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010044const GraphConfig &GraphContext::config() const
Georgios Pinitasff421f22017-10-04 16:53:58 +010045{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010046 return _config;
Georgios Pinitasff421f22017-10-04 16:53:58 +010047}
48
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010049void GraphContext::set_config(const GraphConfig &config)
Georgios Pinitasff421f22017-10-04 16:53:58 +010050{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +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
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010071std::map<Target, MemoryManagerContext> &GraphContext::memory_managers()
72{
73 return _memory_managers;
74}
75
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010076void GraphContext::finalize()
77{
78 for(auto &mm_obj : _memory_managers)
79 {
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010080 // Finalize intra layer memory manager
81 if(mm_obj.second.intra_mm != nullptr)
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010082 {
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010083 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();
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010089 }
90 }
91}
92} // namespace graph
Anthony Barbierb6eb3532018-08-08 13:20:04 +010093} // namespace arm_compute