blob: ab7aac6230fbd698335b3f65b421deca341a7d51 [file] [log] [blame]
Georgios Pinitasd8734b52017-12-22 15:27:52 +00001/*
Michalis Spyrou402740d2021-04-20 11:26:21 +01002 * Copyright (c) 2018-2021 Arm Limited.
Georgios Pinitasd8734b52017-12-22 15:27:52 +00003 *
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 */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010024#include "arm_compute/graph/GraphManager.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000025
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010026#include "arm_compute/graph/Graph.h"
27#include "arm_compute/graph/GraphContext.h"
28#include "arm_compute/graph/Logger.h"
29#include "arm_compute/graph/PassManager.h"
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010030#include "arm_compute/graph/TypePrinter.h"
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010031#include "arm_compute/graph/Utils.h"
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010032#include "arm_compute/graph/detail/CrossLayerMemoryManagerHelpers.h"
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010033#include "arm_compute/graph/detail/ExecutionHelpers.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000034
Georgios Pinitas2a2db592018-08-15 12:14:46 +010035#include "arm_compute/graph/algorithms/TopologicalSort.h"
36
Georgios Pinitasd8734b52017-12-22 15:27:52 +000037namespace arm_compute
38{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010039namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000040{
41GraphManager::GraphManager()
42 : _workloads()
43{
Georgios Pinitasd8734b52017-12-22 15:27:52 +000044}
45
46void GraphManager::finalize_graph(Graph &graph, GraphContext &ctx, PassManager &pm, Target target)
47{
Georgios Pinitasd8734b52017-12-22 15:27:52 +000048 // Check if graph has been registered
Georgios Pinitasae700722018-04-27 18:10:01 +010049 if(_workloads.find(graph.id()) != std::end(_workloads))
50 {
51 ARM_COMPUTE_ERROR("Graph is already registered!");
52 }
Georgios Pinitasd8734b52017-12-22 15:27:52 +000053
Georgios Pinitasf4261ad2019-12-02 11:58:19 +000054 // Apply IR mutating passes
55 pm.run_type(graph, IGraphMutator::MutationType::IR);
56
Georgios Pinitasd8734b52017-12-22 15:27:52 +000057 // Force target to all graph construct
Georgios Pinitas7097e3c2019-02-20 18:11:42 +000058 // TODO (COMPMID-2014) : Support heterogeneous execution
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010059 Target forced_target = target;
Michalis Spyrou402740d2021-04-20 11:26:21 +010060
61 // In case CLVK is selected, use the CL backend and
62 // update config
63 if(target == Target::CLVK)
64 {
65 forced_target = Target::CL;
66 GraphConfig config = ctx.config();
67 config.backend_type = CLBackendType::Clvk;
68
69 ctx.set_config(config);
70 }
71
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010072 if(!is_target_supported(target))
73 {
74 forced_target = get_default_target();
75 ARM_COMPUTE_LOG_GRAPH_INFO("Switching target from " << target << " to " << forced_target << std::endl);
76 }
Georgios Pinitasd8734b52017-12-22 15:27:52 +000077 force_target_to_graph(graph, forced_target);
78
Georgios Pinitas7097e3c2019-02-20 18:11:42 +000079 // Setup backend context
80 // TODO (COMPMID-2014) : Setup all backends needed by the graph
81 setup_requested_backend_context(ctx, forced_target);
82
Georgios Pinitasd8734b52017-12-22 15:27:52 +000083 // Configure all tensors
84 detail::configure_all_tensors(graph);
85
Georgios Pinitasf4261ad2019-12-02 11:58:19 +000086 // Apply backend mutating passes
87 pm.run_type(graph, IGraphMutator::MutationType::Backend);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000088
Georgios Pinitasd8734b52017-12-22 15:27:52 +000089 // Perform topological sort
Georgios Pinitas2a2db592018-08-15 12:14:46 +010090 std::vector<NodeID> topological_sorted_nodes = dfs(graph);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000091
Georgios Pinitas28705162018-03-21 20:10:53 +000092 // Validate all nodes
93 detail::validate_all_nodes(graph);
94
Georgios Pinitasd8734b52017-12-22 15:27:52 +000095 // Configure all nodes
Georgios Pinitas2a2db592018-08-15 12:14:46 +010096 auto workload = detail::configure_all_nodes(graph, ctx, topological_sorted_nodes);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000097 ARM_COMPUTE_ERROR_ON_MSG(workload.tasks.empty(), "Could not configure all nodes!");
98
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010099 // Allocate const tensors and call accessors
100 detail::allocate_const_tensors(graph);
101 detail::call_all_const_node_accessors(graph);
102
Georgios Pinitas72219332018-06-05 14:56:06 +0100103 // Prepare graph
104 detail::prepare_all_tasks(workload);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000105
Georgios Pinitas3d1489d2018-05-03 20:47:16 +0100106 // Setup tensor memory (Allocate all tensors or setup transition manager)
107 if(ctx.config().use_transition_memory_manager)
108 {
109 detail::configure_transition_manager(graph, ctx, workload);
Georgios Pinitase0437672018-05-02 14:07:55 +0100110 }
111 else
112 {
Georgios Pinitase0437672018-05-02 14:07:55 +0100113 detail::allocate_all_tensors(graph);
Georgios Pinitas3d1489d2018-05-03 20:47:16 +0100114 }
Georgios Pinitas1562be32018-03-08 19:09:19 +0000115
Georgios Pinitas3d1489d2018-05-03 20:47:16 +0100116 // Finalize Graph context
117 ctx.finalize();
Georgios Pinitase0437672018-05-02 14:07:55 +0100118
Georgios Pinitas3d1489d2018-05-03 20:47:16 +0100119 // Register graph
120 _workloads.insert(std::make_pair(graph.id(), std::move(workload)));
Georgios Pinitas54c92fd2018-11-05 12:16:15 +0000121 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Created workload for graph with ID : " << graph.id() << std::endl);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000122}
123
124void GraphManager::execute_graph(Graph &graph)
125{
126 // Check if graph is finalized
127 auto it = _workloads.find(graph.id());
128 ARM_COMPUTE_ERROR_ON_MSG(it == std::end(_workloads), "Graph is not registered!");
129
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100130 while(true)
131 {
132 // Call input accessors
133 if(!detail::call_all_input_node_accessors(it->second))
134 {
135 return;
136 }
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000137
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100138 // Run graph
139 detail::call_all_tasks(it->second);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000140
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100141 // Call output accessors
142 if(!detail::call_all_output_node_accessors(it->second))
143 {
144 return;
145 }
146 }
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000147}
148
149void GraphManager::invalidate_graph(Graph &graph)
150{
151 auto it = _workloads.find(graph.id());
152 ARM_COMPUTE_ERROR_ON_MSG(it == std::end(_workloads), "Graph is not registered!");
153
154 _workloads.erase(it);
155}
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100156} // namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000157} // namespace arm_compute