blob: a7b6b3679af5b217841427dbd9699852da7af1bf [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/nodes/PoolingLayerNode.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000025
26#include "arm_compute/core/Utils.h"
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010027#include "arm_compute/graph/Graph.h"
28#include "arm_compute/graph/INodeVisitor.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000029
30namespace arm_compute
31{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010032namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000033{
34PoolingLayerNode::PoolingLayerNode(PoolingLayerInfo pool_info)
35 : _info(std::move(pool_info))
36{
37 _input_edges.resize(1, EmptyEdgeID);
38 _outputs.resize(1, NullTensorID);
39}
40
41PoolingLayerInfo PoolingLayerNode::pooling_info() const
42{
43 return _info;
44}
45
46TensorShape PoolingLayerNode::compute_output_shape(TensorShape input_shape, PoolingLayerInfo info)
47{
48 const int pool_size_x = info.is_global_pooling() ? input_shape.x() : info.pool_size().width;
49 const int pool_size_y = info.is_global_pooling() ? input_shape.y() : info.pool_size().height;
50
51 unsigned int pooled_width = 0;
52 unsigned int pooled_height = 0;
53 std::tie(pooled_width, pooled_height) = scaled_dimensions(input_shape.x(), input_shape.y(), pool_size_x, pool_size_y, info.pad_stride_info());
54
55 TensorShape output_shape{ input_shape };
56 output_shape.set(0, pooled_width);
57 output_shape.set(1, pooled_height);
58
59 return output_shape;
60}
61
62bool PoolingLayerNode::forward_descriptors()
63{
64 if((input_id(0) != NullTensorID) && (output_id(0) != NullTensorID))
65 {
66 Tensor *dst = output(0);
67 ARM_COMPUTE_ERROR_ON(dst == nullptr);
68 dst->desc() = configure_output(0);
69 return true;
70 }
71 return false;
72}
73
74TensorDescriptor PoolingLayerNode::configure_output(size_t idx) const
75{
76 ARM_COMPUTE_UNUSED(idx);
77 ARM_COMPUTE_ERROR_ON(idx >= _outputs.size());
78
79 const Tensor *src = input(0);
80 ARM_COMPUTE_ERROR_ON(src == nullptr);
81
82 TensorDescriptor output_info = src->desc();
83 TensorShape output_shape = compute_output_shape(src->desc().shape, _info);
84 output_info.shape = output_shape;
85 return output_info;
86}
87
88Status PoolingLayerNode::validate()
89{
90 return Status{};
91}
92
93NodeType PoolingLayerNode::type() const
94{
95 return NodeType::PoolingLayer;
96}
97
98void PoolingLayerNode::accept(INodeVisitor &v)
99{
100 v.visit(*this);
101}
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100102} // namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000103} // namespace arm_compute