blob: c51641d64cbac4975dc87b3d37b37c6a5e006f62 [file] [log] [blame]
Manuel Bottinibffb41e2019-06-20 16:00:27 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2019 Arm Limited.
Manuel Bottinibffb41e2019-06-20 16:00:27 +01003 *
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/FusedDepthwiseConvolutionBatchNormalizationNode.h"
25
26#include "arm_compute/core/Utils.h"
27#include "arm_compute/graph/Graph.h"
28#include "arm_compute/graph/INodeVisitor.h"
29#include "arm_compute/graph/Utils.h"
30
31namespace arm_compute
32{
33namespace graph
34{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010035FusedDepthwiseConvolutionBatchNormalizationNode::FusedDepthwiseConvolutionBatchNormalizationNode(
36 float epsilon,
37 PadStrideInfo info,
38 unsigned int depth_multiplier,
39 DepthwiseConvolutionMethod method,
40 ActivationLayerInfo fused_activation)
41 : _epsilon(epsilon),
42 _info(std::move(info)),
43 _depth_multiplier(depth_multiplier),
44 _method(method),
45 _fused_activation(fused_activation)
Manuel Bottinibffb41e2019-06-20 16:00:27 +010046{
47 _input_edges.resize(7, EmptyEdgeID);
48 _outputs.resize(1, NullTensorID);
49}
50
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010051void FusedDepthwiseConvolutionBatchNormalizationNode::set_depthwise_convolution_method(
52 DepthwiseConvolutionMethod method)
Manuel Bottinibffb41e2019-06-20 16:00:27 +010053{
54 _method = method;
55}
56
57DepthwiseConvolutionMethod FusedDepthwiseConvolutionBatchNormalizationNode::depthwise_convolution_method() const
58{
59 return _method;
60}
61
62float FusedDepthwiseConvolutionBatchNormalizationNode::epsilon() const
63{
64 return _epsilon;
65}
66
67PadStrideInfo FusedDepthwiseConvolutionBatchNormalizationNode::convolution_info() const
68{
69 return _info;
70}
71
72unsigned int FusedDepthwiseConvolutionBatchNormalizationNode::depth_multiplier() const
73{
74 return _depth_multiplier;
75}
76
77ActivationLayerInfo FusedDepthwiseConvolutionBatchNormalizationNode::fused_activation() const
78{
79 return _fused_activation;
80}
81
82void FusedDepthwiseConvolutionBatchNormalizationNode::set_fused_activation(ActivationLayerInfo fused_activation)
83{
84 _fused_activation = fused_activation;
85}
86
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010087TensorDescriptor
88FusedDepthwiseConvolutionBatchNormalizationNode::compute_output_descriptor(const TensorDescriptor &input_descriptor,
89 const TensorDescriptor &weights_descriptor,
90 const PadStrideInfo &info,
91 int depth_multiplier)
Manuel Bottinibffb41e2019-06-20 16:00:27 +010092{
93 unsigned int output_width = 0;
94 unsigned int output_height = 0;
95
96 const unsigned int input_width = get_dimension_size(input_descriptor, DataLayoutDimension::WIDTH);
97 const unsigned int input_height = get_dimension_size(input_descriptor, DataLayoutDimension::HEIGHT);
98 const unsigned int input_channels = get_dimension_size(input_descriptor, DataLayoutDimension::CHANNEL);
99 const unsigned int kernel_width = get_dimension_size(weights_descriptor, DataLayoutDimension::WIDTH);
100 const unsigned int kernel_height = get_dimension_size(weights_descriptor, DataLayoutDimension::HEIGHT);
101
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100102 std::tie(output_width, output_height) =
103 scaled_dimensions(input_width, input_height, kernel_width, kernel_height, info);
Manuel Bottinibffb41e2019-06-20 16:00:27 +0100104
105 TensorDescriptor output_descriptor = input_descriptor;
106 output_descriptor.shape.set(get_dimension_idx(output_descriptor.layout, DataLayoutDimension::WIDTH), output_width);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100107 output_descriptor.shape.set(get_dimension_idx(output_descriptor.layout, DataLayoutDimension::HEIGHT),
108 output_height);
109 output_descriptor.shape.set(get_dimension_idx(output_descriptor.layout, DataLayoutDimension::CHANNEL),
110 input_channels * depth_multiplier);
Manuel Bottinibffb41e2019-06-20 16:00:27 +0100111
112 return output_descriptor;
113}
114
115bool FusedDepthwiseConvolutionBatchNormalizationNode::forward_descriptors()
116{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100117 if ((input_id(0) != NullTensorID) && (input_id(1) != NullTensorID) && (output_id(0) != NullTensorID))
Manuel Bottinibffb41e2019-06-20 16:00:27 +0100118 {
119 Tensor *dst = output(0);
120 ARM_COMPUTE_ERROR_ON(dst == nullptr);
121 dst->desc() = configure_output(0);
122 return true;
123 }
124 return false;
125}
126
127TensorDescriptor FusedDepthwiseConvolutionBatchNormalizationNode::configure_output(size_t idx) const
128{
129 ARM_COMPUTE_UNUSED(idx);
130 const Tensor *src = input(0);
131 const Tensor *weights = input(1);
132
133 ARM_COMPUTE_ERROR_ON(src == nullptr || weights == nullptr);
134
135 TensorDescriptor output_info = compute_output_descriptor(src->desc(), weights->desc(), _info, _depth_multiplier);
136
137 return output_info;
138}
139
140NodeType FusedDepthwiseConvolutionBatchNormalizationNode::type() const
141{
142 return FusedDepthwiseConvolutionBatchNormalizationNode::node_type;
143}
144
145void FusedDepthwiseConvolutionBatchNormalizationNode::accept(INodeVisitor &v)
146{
147 v.visit(*this);
148}
149} // namespace graph
150} // namespace arm_compute