blob: 996e50bbbca333ce57a7f4fc02ae4ad1b9ba916a [file] [log] [blame]
Georgios Pinitasd8734b52017-12-22 15:27:52 +00001/*
Georgios Pinitas7097e3c2019-02-20 18:11:42 +00002 * Copyright (c) 2018-2019 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;
60 if(!is_target_supported(target))
61 {
62 forced_target = get_default_target();
63 ARM_COMPUTE_LOG_GRAPH_INFO("Switching target from " << target << " to " << forced_target << std::endl);
64 }
Georgios Pinitasd8734b52017-12-22 15:27:52 +000065 force_target_to_graph(graph, forced_target);
66
Georgios Pinitas7097e3c2019-02-20 18:11:42 +000067 // Setup backend context
68 // TODO (COMPMID-2014) : Setup all backends needed by the graph
69 setup_requested_backend_context(ctx, forced_target);
70
Georgios Pinitasd8734b52017-12-22 15:27:52 +000071 // Configure all tensors
72 detail::configure_all_tensors(graph);
73
Georgios Pinitasf4261ad2019-12-02 11:58:19 +000074 // Apply backend mutating passes
75 pm.run_type(graph, IGraphMutator::MutationType::Backend);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000076
Georgios Pinitasd8734b52017-12-22 15:27:52 +000077 // Perform topological sort
Georgios Pinitas2a2db592018-08-15 12:14:46 +010078 std::vector<NodeID> topological_sorted_nodes = dfs(graph);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000079
Georgios Pinitas28705162018-03-21 20:10:53 +000080 // Validate all nodes
81 detail::validate_all_nodes(graph);
82
Georgios Pinitasd8734b52017-12-22 15:27:52 +000083 // Configure all nodes
Georgios Pinitas2a2db592018-08-15 12:14:46 +010084 auto workload = detail::configure_all_nodes(graph, ctx, topological_sorted_nodes);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000085 ARM_COMPUTE_ERROR_ON_MSG(workload.tasks.empty(), "Could not configure all nodes!");
86
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010087 // Allocate const tensors and call accessors
88 detail::allocate_const_tensors(graph);
89 detail::call_all_const_node_accessors(graph);
90
Georgios Pinitas72219332018-06-05 14:56:06 +010091 // Prepare graph
92 detail::prepare_all_tasks(workload);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000093
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010094 // Setup tensor memory (Allocate all tensors or setup transition manager)
95 if(ctx.config().use_transition_memory_manager)
96 {
97 detail::configure_transition_manager(graph, ctx, workload);
Georgios Pinitase0437672018-05-02 14:07:55 +010098 }
99 else
100 {
Georgios Pinitase0437672018-05-02 14:07:55 +0100101 detail::allocate_all_tensors(graph);
Georgios Pinitas3d1489d2018-05-03 20:47:16 +0100102 }
Georgios Pinitas1562be32018-03-08 19:09:19 +0000103
Georgios Pinitas3d1489d2018-05-03 20:47:16 +0100104 // Finalize Graph context
105 ctx.finalize();
Georgios Pinitase0437672018-05-02 14:07:55 +0100106
Georgios Pinitas3d1489d2018-05-03 20:47:16 +0100107 // Register graph
108 _workloads.insert(std::make_pair(graph.id(), std::move(workload)));
Georgios Pinitas54c92fd2018-11-05 12:16:15 +0000109 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Created workload for graph with ID : " << graph.id() << std::endl);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000110}
111
112void GraphManager::execute_graph(Graph &graph)
113{
114 // Check if graph is finalized
115 auto it = _workloads.find(graph.id());
116 ARM_COMPUTE_ERROR_ON_MSG(it == std::end(_workloads), "Graph is not registered!");
117
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100118 while(true)
119 {
120 // Call input accessors
121 if(!detail::call_all_input_node_accessors(it->second))
122 {
123 return;
124 }
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000125
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100126 // Run graph
127 detail::call_all_tasks(it->second);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000128
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100129 // Call output accessors
130 if(!detail::call_all_output_node_accessors(it->second))
131 {
132 return;
133 }
134 }
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000135}
136
137void GraphManager::invalidate_graph(Graph &graph)
138{
139 auto it = _workloads.find(graph.id());
140 ARM_COMPUTE_ERROR_ON_MSG(it == std::end(_workloads), "Graph is not registered!");
141
142 _workloads.erase(it);
143}
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100144} // namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000145} // namespace arm_compute