blob: fa63f5625b74fc69565ddcc4536364aa58808348 [file] [log] [blame]
Georgios Pinitasd8734b52017-12-22 15:27:52 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * 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/mutators/DepthConcatSubTensorMutator.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/Logger.h"
Georgios Pinitase2220552018-07-20 13:23:44 +010028#include "arm_compute/graph/Utils.h"
Georgios Pinitas2a2db592018-08-15 12:14:46 +010029#include "arm_compute/graph/algorithms/TopologicalSort.h"
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010030#include "arm_compute/graph/backends/BackendRegistry.h"
Georgios Pinitase2220552018-07-20 13:23:44 +010031#include "arm_compute/graph/nodes/ConcatenateLayerNode.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000032
33#include "arm_compute/core/utils/misc/Cast.h"
34#include "arm_compute/core/utils/misc/Iterable.h"
35
36namespace arm_compute
37{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010038namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000039{
40const char *DepthConcatSubTensorMutator::name()
41{
42 return "DepthConcatSubTensorMutator";
43}
44
Georgios Pinitasf4261ad2019-12-02 11:58:19 +000045IGraphMutator::MutationType DepthConcatSubTensorMutator::type() const
46{
47 return IGraphMutator::MutationType::Backend;
48}
49
Georgios Pinitasd8734b52017-12-22 15:27:52 +000050void DepthConcatSubTensorMutator::mutate(Graph &g)
51{
Georgios Pinitas2a2db592018-08-15 12:14:46 +010052 // Early exit if no Concatenation layers exist in graph
53 if(g.nodes(NodeType::ConcatenateLayer).empty())
Georgios Pinitasd8734b52017-12-22 15:27:52 +000054 {
Georgios Pinitas2a2db592018-08-15 12:14:46 +010055 return;
56 }
57
58 // Perform topological sort
59 std::vector<NodeID> topological_sorted_node_ids = dfs(g);
60
61 // Should be in reverse order of execution
62 for(auto &node_id : arm_compute::utils::iterable::reverse_iterate(topological_sorted_node_ids))
63 {
64 INode *node = g.node(node_id);
65 if(node != nullptr && node->type() == NodeType::ConcatenateLayer && node->output(0) != nullptr)
Georgios Pinitasd8734b52017-12-22 15:27:52 +000066 {
67 // Get output tensor
68 auto output_tensor = node->output(0);
69
Georgios Pinitas9e4824c2019-04-12 13:15:58 +010070 // Check concatenation axis (Sub-tensor optimization is supported for concatenation axis >=2)
Georgios Pinitas2a2db592018-08-15 12:14:46 +010071 auto *concat_node = arm_compute::utils::cast::polymorphic_downcast<ConcatenateLayerNode *>(node);
Georgios Pinitas9e4824c2019-04-12 13:15:58 +010072 if(output_tensor == nullptr || get_dimension_idx(output_tensor->desc().layout, concat_node->concatenation_axis()) < 2)
Georgios Pinitase2220552018-07-20 13:23:44 +010073 {
74 continue;
75 }
76
Isabella Gottardi0ae5de92019-03-14 10:32:11 +000077 // Check that all tensor have the same target, valid inputs and same quantization info
Georgios Pinitasd8734b52017-12-22 15:27:52 +000078 bool is_valid = std::all_of(node->input_edges().cbegin(), node->input_edges().cend(),
79 [&](const EdgeID & eid)
80 {
Isabella Gottardi0ae5de92019-03-14 10:32:11 +000081 return (g.edge(eid) != nullptr) && (g.edge(eid)->tensor() != nullptr) && (g.edge(eid)->tensor()->desc().target == output_tensor->desc().target)
82 && (g.edge(eid)->tensor()->desc().quant_info == output_tensor->desc().quant_info);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000083 });
84
85 // Create subtensors
Anthony Barbier890ad1b2018-08-22 13:44:36 +010086 if(is_valid && is_target_supported(output_tensor->desc().target))
Georgios Pinitasd8734b52017-12-22 15:27:52 +000087 {
88 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Using sub-tensors for the node with ID : "
89 << node->id() << " and name : " << node->name() << std::endl);
90 // Create sub-tensor handles
91 unsigned depth = 0;
92 for(unsigned int i = 0; i < node->input_edges().size(); ++i)
93 {
94 auto input_tensor = node->input(i);
95 const auto input_shape = input_tensor->desc().shape;
96
Anthony Barbier890ad1b2018-08-22 13:44:36 +010097 backends::IDeviceBackend &backend = backends::BackendRegistry::get().get_backend(input_tensor->desc().target);
98 std::unique_ptr<ITensorHandle> handle = backend.create_subtensor(output_tensor->handle(), input_shape, Coordinates(0, 0, depth), false);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000099 input_tensor->set_handle(std::move(handle));
100
101 depth += input_shape.z();
102 }
103
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100104 auto *dc_node = arm_compute::utils::cast::polymorphic_downcast<ConcatenateLayerNode *>(node);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000105 dc_node->set_enabled(false);
106 }
107 }
108 }
109}
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100110} // namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000111} // namespace arm_compute