blob: 10661ea275a9d95d060decb4caadb4d2706e191d [file] [log] [blame]
Georgios Pinitasd8734b52017-12-22 15:27:52 +00001/*
2 * Copyright (c) 2018 ARM Limited.
3 *
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"
30#include "arm_compute/graph/Utils.h"
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010031#include "arm_compute/graph/detail/CrossLayerMemoryManagerHelpers.h"
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010032#include "arm_compute/graph/detail/ExecutionHelpers.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000033
34namespace arm_compute
35{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010036namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000037{
38GraphManager::GraphManager()
39 : _workloads()
40{
Georgios Pinitasd8734b52017-12-22 15:27:52 +000041}
42
43void GraphManager::finalize_graph(Graph &graph, GraphContext &ctx, PassManager &pm, Target target)
44{
45 // Setup graph context if not done manually
46 setup_default_graph_context(ctx);
47
48 // 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
54 // Force target to all graph construct
55 // TODO (geopin01) : Support heterogeneous execution
56 Target forced_target = is_target_supported(target) ? target : get_default_target();
57 force_target_to_graph(graph, forced_target);
58
59 // Configure all tensors
60 detail::configure_all_tensors(graph);
61
62 // Apply all mutating passes
63 pm.run_all(graph);
64
Georgios Pinitasd8734b52017-12-22 15:27:52 +000065 // Perform topological sort
66 // FIXME : Sort nodes and pass sorted indices in configure all nodes
67
Georgios Pinitas28705162018-03-21 20:10:53 +000068 // Validate all nodes
69 detail::validate_all_nodes(graph);
70
Georgios Pinitasd8734b52017-12-22 15:27:52 +000071 // Configure all nodes
72 auto workload = detail::configure_all_nodes(graph, ctx);
73 ARM_COMPUTE_ERROR_ON_MSG(workload.tasks.empty(), "Could not configure all nodes!");
74
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010075 // Allocate const tensors and call accessors
76 detail::allocate_const_tensors(graph);
77 detail::call_all_const_node_accessors(graph);
78
Georgios Pinitas72219332018-06-05 14:56:06 +010079 // Prepare graph
80 detail::prepare_all_tasks(workload);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000081
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010082 // Setup tensor memory (Allocate all tensors or setup transition manager)
83 if(ctx.config().use_transition_memory_manager)
84 {
85 detail::configure_transition_manager(graph, ctx, workload);
Georgios Pinitase0437672018-05-02 14:07:55 +010086 }
87 else
88 {
Georgios Pinitase0437672018-05-02 14:07:55 +010089 detail::allocate_all_tensors(graph);
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010090 }
Georgios Pinitas1562be32018-03-08 19:09:19 +000091
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010092 // Finalize Graph context
93 ctx.finalize();
Georgios Pinitase0437672018-05-02 14:07:55 +010094
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010095 // Register graph
96 _workloads.insert(std::make_pair(graph.id(), std::move(workload)));
97 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Created workload for graph with ID : " << graph.id().get() << std::endl);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000098}
99
100void GraphManager::execute_graph(Graph &graph)
101{
102 // Check if graph is finalized
103 auto it = _workloads.find(graph.id());
104 ARM_COMPUTE_ERROR_ON_MSG(it == std::end(_workloads), "Graph is not registered!");
105
106 // Call input accessors
107 detail::call_all_input_node_accessors(it->second);
108
109 // Run graph
110 detail::call_all_tasks(it->second);
111
112 // Call output accessors
113 detail::call_all_output_node_accessors(it->second);
114}
115
116void GraphManager::invalidate_graph(Graph &graph)
117{
118 auto it = _workloads.find(graph.id());
119 ARM_COMPUTE_ERROR_ON_MSG(it == std::end(_workloads), "Graph is not registered!");
120
121 _workloads.erase(it);
122}
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100123} // namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000124} // namespace arm_compute