blob: 6fc45c0aa71e9b1bab2572d6704b2b32c49a8964 [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"
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010025#include <arm_compute/graph.h>
Georgios Pinitasff421f22017-10-04 16:53:58 +010026
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010027namespace arm_compute
Georgios Pinitasff421f22017-10-04 16:53:58 +010028{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010029namespace graph
Georgios Pinitasff421f22017-10-04 16:53:58 +010030{
Georgios Pinitasff421f22017-10-04 16:53:58 +010031GraphContext::GraphContext()
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010032 : _config(), _memory_managers()
Georgios Pinitasff421f22017-10-04 16:53:58 +010033{
34}
35
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010036const GraphConfig &GraphContext::config() const
Georgios Pinitasff421f22017-10-04 16:53:58 +010037{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010038 return _config;
Georgios Pinitasff421f22017-10-04 16:53:58 +010039}
40
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010041void GraphContext::set_config(const GraphConfig &config)
Georgios Pinitasff421f22017-10-04 16:53:58 +010042{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010043 _config = config;
44}
45
46bool GraphContext::insert_memory_management_ctx(MemoryManagerContext &&memory_ctx)
47{
48 Target target = memory_ctx.target;
49 if(target == Target::UNSPECIFIED || _memory_managers.find(target) != std::end(_memory_managers))
50 {
51 return false;
52 }
53
54 _memory_managers[target] = std::move(memory_ctx);
55 return true;
56}
57
58MemoryManagerContext *GraphContext::memory_management_ctx(Target target)
59{
60 return (_memory_managers.find(target) != std::end(_memory_managers)) ? &_memory_managers[target] : nullptr;
61}
62
63void GraphContext::finalize()
64{
65 for(auto &mm_obj : _memory_managers)
66 {
67 if(mm_obj.second.mm != nullptr)
68 {
69 mm_obj.second.mm->finalize();
70 }
71 }
72}
73} // namespace graph
74} // namespace arm_compute