blob: 6b83f6b90cfac448582833c2b83ab729a3c23fb5 [file] [log] [blame]
Gian Marco Iodice23e24792018-09-07 15:32:14 +01001/*
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 */
24#include "arm_compute/graph/nodes/ReorgLayerNode.h"
25
26#include "arm_compute/graph/Graph.h"
27#include "arm_compute/graph/INodeVisitor.h"
28#include "arm_compute/graph/Utils.h"
29
30namespace arm_compute
31{
32namespace graph
33{
34ReorgLayerNode::ReorgLayerNode(int stride)
35 : _stride(stride)
36{
37 _input_edges.resize(1, EmptyEdgeID);
38 _outputs.resize(1, NullTensorID);
39}
40
41int ReorgLayerNode::stride() const
42{
43 return _stride;
44}
45
46TensorDescriptor ReorgLayerNode::compute_output_descriptor(const TensorDescriptor &input_descriptor, int stride)
47{
48 const unsigned int input_width = get_dimension_size(input_descriptor, DataLayoutDimension::WIDTH);
49 const unsigned int input_height = get_dimension_size(input_descriptor, DataLayoutDimension::HEIGHT);
50 const unsigned int input_channel = get_dimension_size(input_descriptor, DataLayoutDimension::CHANNEL);
51
52 ARM_COMPUTE_ERROR_ON(stride <= 0);
53 ARM_COMPUTE_ERROR_ON_MSG((input_width % stride != 0), "The width of the input tensor must be a multiple of stride");
54 ARM_COMPUTE_ERROR_ON_MSG((input_height % stride != 0), "The height of the input tensor must be a multiple of stride");
55
56 TensorDescriptor output_descriptor = input_descriptor;
57 output_descriptor.shape.set(get_dimension_idx(output_descriptor, DataLayoutDimension::WIDTH), input_width / stride);
58 output_descriptor.shape.set(get_dimension_idx(output_descriptor, DataLayoutDimension::HEIGHT), input_height / stride);
59 output_descriptor.shape.set(get_dimension_idx(output_descriptor, DataLayoutDimension::CHANNEL), input_channel * stride * stride);
60
61 return output_descriptor;
62}
63
64bool ReorgLayerNode::forward_descriptors()
65{
66 if((input_id(0) != NullTensorID) && (output_id(0) != NullTensorID))
67 {
68 Tensor *dst = output(0);
69 ARM_COMPUTE_ERROR_ON(dst == nullptr);
70 dst->desc() = configure_output(0);
71 return true;
72 }
73 return false;
74}
75
76TensorDescriptor ReorgLayerNode::configure_output(size_t idx) const
77{
78 ARM_COMPUTE_UNUSED(idx);
79 ARM_COMPUTE_ERROR_ON(idx >= _outputs.size());
80
81 const Tensor *src = input(0);
82 ARM_COMPUTE_ERROR_ON(src == nullptr);
83
84 return compute_output_descriptor(src->desc(), _stride);
85}
86
87NodeType ReorgLayerNode::type() const
88{
89 return NodeType::ReorgLayer;
90}
91
92void ReorgLayerNode::accept(INodeVisitor &v)
93{
94 v.visit(*this);
95}
96} // namespace graph
97} // namespace arm_compute