Compute Library
 23.11
DepthwiseConvolutionLayerNode.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018-2019, 2021 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  */
25 
26 #include "arm_compute/core/Utils.h"
30 
31 namespace arm_compute
32 {
33 namespace graph
34 {
36  int depth_multiplier,
38  QuantizationInfo out_quant_info)
39  : _info(std::move(info)),
40  _depth_multiplier(depth_multiplier),
41  _method(method),
42  _out_quant_info(std::move(out_quant_info)),
43  _fused_activation()
44 {
45  _input_edges.resize(3, EmptyEdgeID);
46  _outputs.resize(1, NullTensorID);
47 }
48 
50 {
51  return _depth_multiplier;
52 }
53 
55 {
56  _method = method;
57 }
58 
60 {
61  return _method;
62 }
63 
65 {
66  return _info;
67 }
68 
70 {
71  return _fused_activation;
72 }
73 
75 {
76  _fused_activation = fused_activation;
77 }
78 
80 {
81  _info = info;
82 }
83 
85  const TensorDescriptor &weights_descriptor,
86  const PadStrideInfo &info,
87  int depth_multiplier)
88 {
89  unsigned int output_width = 0;
90  unsigned int output_height = 0;
91 
92  const unsigned int input_width = get_dimension_size(input_descriptor, DataLayoutDimension::WIDTH);
93  const unsigned int input_height = get_dimension_size(input_descriptor, DataLayoutDimension::HEIGHT);
94  const unsigned int input_channels = get_dimension_size(input_descriptor, DataLayoutDimension::CHANNEL);
95  const unsigned int kernel_width = get_dimension_size(weights_descriptor, DataLayoutDimension::WIDTH);
96  const unsigned int kernel_height = get_dimension_size(weights_descriptor, DataLayoutDimension::HEIGHT);
97 
98  std::tie(output_width, output_height) =
99  scaled_dimensions(input_width, input_height, kernel_width, kernel_height, info);
100 
101  const DataLayout data_layout = input_descriptor.layout;
102  TensorDescriptor output_descriptor = input_descriptor;
103  output_descriptor.shape.set(get_dimension_idx(data_layout, DataLayoutDimension::WIDTH), output_width);
104  output_descriptor.shape.set(get_dimension_idx(data_layout, DataLayoutDimension::HEIGHT), output_height);
106  input_channels * depth_multiplier);
107 
108  return output_descriptor;
109 }
110 
112 {
113  if ((input_id(0) != NullTensorID) && (input_id(1) != NullTensorID) && (output_id(0) != NullTensorID))
114  {
115  Tensor *dst = output(0);
116  ARM_COMPUTE_ERROR_ON(dst == nullptr);
117  dst->desc() = configure_output(0);
118  return true;
119  }
120  return false;
121 }
122 
124 {
125  ARM_COMPUTE_UNUSED(idx);
126  const Tensor *src = input(0);
127  const Tensor *weights = input(1);
128 
129  ARM_COMPUTE_ERROR_ON(src == nullptr || weights == nullptr);
130 
131  TensorDescriptor output_info = compute_output_descriptor(src->desc(), weights->desc(), _info, _depth_multiplier);
132  if (!_out_quant_info.empty())
133  {
134  output_info.quant_info = _out_quant_info;
135  }
136 
137  return output_info;
138 }
139 
141 {
143 }
144 
146 {
147  v.visit(*this);
148 }
149 } // namespace graph
150 } // namespace arm_compute
arm_compute::graph::EmptyEdgeID
constexpr EdgeID EmptyEdgeID
Definition: Types.h:81
arm_compute::test::validation::src
SimpleTensor< float > src
Definition: DFT.cpp:155
arm_compute::graph::DepthwiseConvolutionLayerNode::accept
void accept(INodeVisitor &v) override
Accepts a node visitor.
Definition: DepthwiseConvolutionLayerNode.cpp:145
arm_compute::QuantizationInfo
Quantization information.
Definition: QuantizationInfo.h:67
arm_compute::DataLayout
DataLayout
[DataLayout enum definition]
Definition: CoreTypes.h:110
arm_compute::graph::DepthwiseConvolutionLayerNode::node_type
static constexpr NodeType node_type
Definition: DepthwiseConvolutionLayerNode.h:107
arm_compute::DataLayoutDimension::CHANNEL
@ CHANNEL
channel
arm_compute::graph::DepthwiseConvolutionLayerNode::set_fused_activation
void set_fused_activation(ActivationLayerInfo fused_activation)
Sets fused activation.
Definition: DepthwiseConvolutionLayerNode.cpp:74
INodeVisitor.h
arm_compute::graph::INode::input_id
TensorID input_id(size_t idx) const
Returns the tensor ID of a given input of the node.
Definition: INode.cpp:137
arm_compute::test::validation::dst
auto dst
Definition: DFT.cpp:170
arm_compute::graph::Tensor::desc
TensorDescriptor & desc()
TensorInfo metadata accessor.
Definition: Tensor.cpp:40
arm_compute::graph::DepthwiseConvolutionLayerNode::fused_activation
ActivationLayerInfo fused_activation() const
Returns fused activation.
Definition: DepthwiseConvolutionLayerNode.cpp:69
arm_compute::graph::INode::output
Tensor * output(size_t idx) const
Returns the tensor of a given output of the node.
Definition: INode.cpp:158
arm_compute::scaled_dimensions
std::pair< unsigned int, unsigned int > scaled_dimensions(int width, int height, int kernel_width, int kernel_height, const PadStrideInfo &pad_stride_info, const Size2D &dilation=Size2D(1U, 1U))
Returns expected width and height of output scaled tensor depending on dimensions rounding mode.
Definition: Utils.cpp:288
arm_compute::graph::Tensor
Tensor object.
Definition: Tensor.h:40
arm_compute::graph::get_dimension_size
size_t get_dimension_size(const TensorDescriptor &descriptor, const DataLayoutDimension data_layout_dimension)
Get size of a tensor's given dimension depending on its layout.
Definition: Utils.cpp:143
arm_compute::DataLayoutDimension::WIDTH
@ WIDTH
width
arm_compute::graph::DepthwiseConvolutionLayerNode::compute_output_descriptor
static TensorDescriptor compute_output_descriptor(const TensorDescriptor &input_descriptor, const TensorDescriptor &weights_descriptor, const PadStrideInfo &info, int depth_multiplier=1)
Computes depthwise convolution output descriptor.
Definition: DepthwiseConvolutionLayerNode.cpp:84
arm_compute::cpu::data_layout
constexpr auto data_layout
Definition: impl.h:36
arm_compute::graph::DepthwiseConvolutionLayerNode::depthwise_convolution_method
DepthwiseConvolutionMethod depthwise_convolution_method() const
Depthwise convolution layer method accessor.
Definition: DepthwiseConvolutionLayerNode.cpp:59
arm_compute::ActivationLayerInfo
Activation Layer Information class.
Definition: ActivationLayerInfo.h:55
DepthwiseConvolutionLayerNode.h
ARM_COMPUTE_ERROR_ON
#define ARM_COMPUTE_ERROR_ON(cond)
If the condition is true then an error message is printed and an exception thrown.
Definition: Error.h:466
arm_compute::test::validation::output_info
output_info
Definition: DirectConvolutionLayer.cpp:547
arm_compute::graph::DepthwiseConvolutionLayerNode::set_convolution_info
void set_convolution_info(PadStrideInfo info)
Sets convolution info.
Definition: DepthwiseConvolutionLayerNode.cpp:79
arm_compute::DataLayoutDimension::HEIGHT
@ HEIGHT
height
arm_compute::graph::DepthwiseConvolutionLayerNode::configure_output
TensorDescriptor configure_output(size_t idx) const override
Calculates output configuration.
Definition: DepthwiseConvolutionLayerNode.cpp:123
arm_compute::graph::TensorDescriptor::layout
DataLayout layout
Data layout.
Definition: TensorDescriptor.h:115
arm_compute::graph::NodeType
NodeType
Supported nodes.
Definition: Types.h:154
arm_compute::graph::DepthwiseConvolutionLayerNode::forward_descriptors
bool forward_descriptors() override
Forwards descriptor information to outputs if possible.
Definition: DepthwiseConvolutionLayerNode.cpp:111
arm_compute::graph::INodeVisitor::visit
virtual void visit(INode &n)=0
Visit INode.
arm_compute::graph::DepthwiseConvolutionLayerNode::set_depthwise_convolution_method
void set_depthwise_convolution_method(DepthwiseConvolutionMethod method)
Sets the depthwise convolution method to use.
Definition: DepthwiseConvolutionLayerNode.cpp:54
arm_compute::graph::TensorDescriptor::shape
TensorShape shape
Tensor shape.
Definition: TensorDescriptor.h:113
ARM_COMPUTE_UNUSED
#define ARM_COMPUTE_UNUSED(...)
To avoid unused variables warnings.
Definition: Error.h:151
arm_compute::graph::DepthwiseConvolutionLayerNode::type
NodeType type() const override
Returns node's type.
Definition: DepthwiseConvolutionLayerNode.cpp:140
arm_compute::PadStrideInfo
Definition: CoreTypes.h:139
arm_compute::graph::INodeVisitor
Node visitor interface.
Definition: INodeVisitor.h:34
Utils.h
arm_compute::graph::get_dimension_idx
size_t get_dimension_idx(DataLayout data_layout, const DataLayoutDimension data_layout_dimension)
Get index of a tensor's given dimension depending on its layout.
Definition: Utils.cpp:150
arm_compute
Copyright (c) 2017-2023 Arm Limited.
Definition: introduction.dox:24
arm_compute::QuantizationInfo::empty
bool empty() const
Indicates whether this QuantizationInfo has valid settings or not.
Definition: QuantizationInfo.h:132
arm_compute::graph::TensorDescriptor
Tensor metadata class.
Definition: TensorDescriptor.h:38
arm_compute::graph::INode::input
Tensor * input(size_t idx) const
Returns the tensor of a given input of the node.
Definition: INode.cpp:150
arm_compute::graph::INode::output_id
TensorID output_id(size_t idx) const
Returns the tensor ID of a given output of the node.
Definition: INode.cpp:144
Utils.h
arm_compute::graph::NullTensorID
constexpr TensorID NullTensorID
Constant NodeID specifying an equivalent of null node.
Definition: Types.h:77
arm_compute::graph::DepthwiseConvolutionMethod
DepthwiseConvolutionMethod
Supported Depthwise Convolution layer methods.
Definition: Types.h:139
arm_compute::test::validation::info
ScaleKernelInfo info(interpolation_policy, default_border_mode, PixelValue(), sampling_policy, false)
arm_compute::TensorShape::set
TensorShape & set(size_t dimension, size_t value, bool apply_dim_correction=true, bool increase_dim_unit=true)
Accessor to set the value of one of the dimensions.
Definition: TensorShape.h:78
arm_compute::graph::DepthwiseConvolutionLayerNode::DepthwiseConvolutionLayerNode
DepthwiseConvolutionLayerNode(PadStrideInfo info, int depth_multiplier=1, DepthwiseConvolutionMethod method=DepthwiseConvolutionMethod::Default, QuantizationInfo out_quant_info=QuantizationInfo())
Constructor.
Definition: DepthwiseConvolutionLayerNode.cpp:35
arm_compute::graph::DepthwiseConvolutionLayerNode::depth_multiplier
int depth_multiplier() const
Depth multiplier accessor.
Definition: DepthwiseConvolutionLayerNode.cpp:49
Graph.h
arm_compute::graph::DepthwiseConvolutionLayerNode::convolution_info
PadStrideInfo convolution_info() const
Convolution metadata accessor.
Definition: DepthwiseConvolutionLayerNode.cpp:64