Compute Library
 23.08
FusedDepthwiseConvolutionBatchNormalizationNode.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019 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 {
37  unsigned int depth_multiplier,
39  ActivationLayerInfo fused_activation)
40  : _epsilon(epsilon), _info(std::move(info)), _depth_multiplier(depth_multiplier), _method(method), _fused_activation(fused_activation)
41 {
42  _input_edges.resize(7, EmptyEdgeID);
43  _outputs.resize(1, NullTensorID);
44 }
45 
47 {
48  _method = method;
49 }
50 
52 {
53  return _method;
54 }
55 
57 {
58  return _epsilon;
59 }
60 
62 {
63  return _info;
64 }
65 
67 {
68  return _depth_multiplier;
69 }
70 
72 {
73  return _fused_activation;
74 }
75 
77 {
78  _fused_activation = fused_activation;
79 }
80 
82  const TensorDescriptor &weights_descriptor,
83  const PadStrideInfo &info,
84  int depth_multiplier)
85 {
86  unsigned int output_width = 0;
87  unsigned int output_height = 0;
88 
89  const unsigned int input_width = get_dimension_size(input_descriptor, DataLayoutDimension::WIDTH);
90  const unsigned int input_height = get_dimension_size(input_descriptor, DataLayoutDimension::HEIGHT);
91  const unsigned int input_channels = get_dimension_size(input_descriptor, DataLayoutDimension::CHANNEL);
92  const unsigned int kernel_width = get_dimension_size(weights_descriptor, DataLayoutDimension::WIDTH);
93  const unsigned int kernel_height = get_dimension_size(weights_descriptor, DataLayoutDimension::HEIGHT);
94 
95  std::tie(output_width, output_height) = scaled_dimensions(input_width, input_height, kernel_width, kernel_height, info);
96 
97  TensorDescriptor output_descriptor = input_descriptor;
98  output_descriptor.shape.set(get_dimension_idx(output_descriptor.layout, DataLayoutDimension::WIDTH), output_width);
99  output_descriptor.shape.set(get_dimension_idx(output_descriptor.layout, DataLayoutDimension::HEIGHT), output_height);
100  output_descriptor.shape.set(get_dimension_idx(output_descriptor.layout, DataLayoutDimension::CHANNEL), input_channels * depth_multiplier);
101 
102  return output_descriptor;
103 }
104 
106 {
107  if((input_id(0) != NullTensorID) && (input_id(1) != NullTensorID) && (output_id(0) != NullTensorID))
108  {
109  Tensor *dst = output(0);
110  ARM_COMPUTE_ERROR_ON(dst == nullptr);
111  dst->desc() = configure_output(0);
112  return true;
113  }
114  return false;
115 }
116 
118 {
119  ARM_COMPUTE_UNUSED(idx);
120  const Tensor *src = input(0);
121  const Tensor *weights = input(1);
122 
123  ARM_COMPUTE_ERROR_ON(src == nullptr || weights == nullptr);
124 
125  TensorDescriptor output_info = compute_output_descriptor(src->desc(), weights->desc(), _info, _depth_multiplier);
126 
127  return output_info;
128 }
129 
131 {
133 }
134 
136 {
137  v.visit(*this);
138 }
139 } // namespace graph
140 } // namespace arm_compute
arm_compute::graph::EmptyEdgeID
constexpr EdgeID EmptyEdgeID
Definition: Types.h:82
arm_compute::test::validation::src
SimpleTensor< float > src
Definition: DFT.cpp:155
input_width
const size_t input_width
Definition: impl.cpp:63
arm_compute::DataLayoutDimension::CHANNEL
@ CHANNEL
channel
arm_compute::graph::FusedDepthwiseConvolutionBatchNormalizationNode::set_fused_activation
void set_fused_activation(ActivationLayerInfo fused_activation)
Sets fused activation.
Definition: FusedDepthwiseConvolutionBatchNormalizationNode.cpp:76
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:138
arm_compute::test::validation::dst
auto dst
Definition: DFT.cpp:170
arm_compute::graph::FusedDepthwiseConvolutionBatchNormalizationNode::fused_activation
ActivationLayerInfo fused_activation() const
Returns fused activation.
Definition: FusedDepthwiseConvolutionBatchNormalizationNode.cpp:71
arm_compute::graph::FusedDepthwiseConvolutionBatchNormalizationNode::forward_descriptors
bool forward_descriptors() override
Forwards descriptor information to outputs if possible.
Definition: FusedDepthwiseConvolutionBatchNormalizationNode.cpp:105
arm_compute::graph::Tensor::desc
TensorDescriptor & desc()
TensorInfo metadata accessor.
Definition: Tensor.cpp:40
arm_compute::graph::FusedDepthwiseConvolutionBatchNormalizationNode::convolution_info
PadStrideInfo convolution_info() const
Convolution metadata accessor.
Definition: FusedDepthwiseConvolutionBatchNormalizationNode.cpp:61
FusedDepthwiseConvolutionBatchNormalizationNode.h
arm_compute::graph::FusedDepthwiseConvolutionBatchNormalizationNode::accept
void accept(INodeVisitor &v) override
Accepts a node visitor.
Definition: FusedDepthwiseConvolutionBatchNormalizationNode.cpp:135
arm_compute::graph::INode::output
Tensor * output(size_t idx) const
Returns the tensor of a given output of the node.
Definition: INode.cpp:159
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::FusedDepthwiseConvolutionBatchNormalizationNode::depth_multiplier
unsigned int depth_multiplier() const
Depth multiplier accessor.
Definition: FusedDepthwiseConvolutionBatchNormalizationNode.cpp:66
arm_compute::graph::FusedDepthwiseConvolutionBatchNormalizationNode::configure_output
TensorDescriptor configure_output(size_t idx) const override
Calculates output configuration.
Definition: FusedDepthwiseConvolutionBatchNormalizationNode.cpp:117
arm_compute::graph::Tensor
Tensor object.
Definition: Tensor.h:41
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:142
arm_compute::DataLayoutDimension::WIDTH
@ WIDTH
width
arm_compute::ActivationLayerInfo
Activation Layer Information class.
Definition: ActivationLayerInfo.h:55
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:467
arm_compute::test::validation::output_info
output_info
Definition: DirectConvolutionLayer.cpp:547
arm_compute::graph::FusedDepthwiseConvolutionBatchNormalizationNode::epsilon
float epsilon() const
Epsilon parameter accessor.
Definition: FusedDepthwiseConvolutionBatchNormalizationNode.cpp:56
arm_compute::DataLayoutDimension::HEIGHT
@ HEIGHT
height
arm_compute::graph::FusedDepthwiseConvolutionBatchNormalizationNode::node_type
static constexpr NodeType node_type
Definition: FusedDepthwiseConvolutionBatchNormalizationNode.h:123
arm_compute::graph::TensorDescriptor::layout
DataLayout layout
Data layout.
Definition: TensorDescriptor.h:111
arm_compute::graph::NodeType
NodeType
Supported nodes.
Definition: Types.h:203
arm_compute::graph::FusedDepthwiseConvolutionBatchNormalizationNode::set_depthwise_convolution_method
void set_depthwise_convolution_method(DepthwiseConvolutionMethod method)
Sets the depthwise convolution layer method to use.
Definition: FusedDepthwiseConvolutionBatchNormalizationNode.cpp:46
arm_compute::graph::FusedDepthwiseConvolutionBatchNormalizationNode::FusedDepthwiseConvolutionBatchNormalizationNode
FusedDepthwiseConvolutionBatchNormalizationNode(float epsilon, PadStrideInfo info, unsigned int depth_multiplier, DepthwiseConvolutionMethod method, ActivationLayerInfo fused_activation=ActivationLayerInfo())
Constructor.
Definition: FusedDepthwiseConvolutionBatchNormalizationNode.cpp:35
arm_compute::graph::INodeVisitor::visit
virtual void visit(INode &n)=0
Visit INode.
arm_compute::graph::TensorDescriptor::shape
TensorShape shape
Tensor shape.
Definition: TensorDescriptor.h:109
ARM_COMPUTE_UNUSED
#define ARM_COMPUTE_UNUSED(...)
To avoid unused variables warnings.
Definition: Error.h:152
arm_compute::PadStrideInfo
Definition: CoreTypes.h:138
arm_compute::graph::FusedDepthwiseConvolutionBatchNormalizationNode::type
NodeType type() const override
Returns node's type.
Definition: FusedDepthwiseConvolutionBatchNormalizationNode.cpp:130
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:148
arm_compute
Copyright (c) 2017-2023 Arm Limited.
Definition: introduction.dox:24
arm_compute::graph::TensorDescriptor
Tensor metadata class.
Definition: TensorDescriptor.h:38
arm_compute::graph::FusedDepthwiseConvolutionBatchNormalizationNode::compute_output_descriptor
static TensorDescriptor compute_output_descriptor(const TensorDescriptor &input_descriptor, const TensorDescriptor &weights_descriptor, const PadStrideInfo &info, int depth_multiplier)
Computes convolution output descriptor.
Definition: FusedDepthwiseConvolutionBatchNormalizationNode.cpp:81
arm_compute::graph::INode::input
Tensor * input(size_t idx) const
Returns the tensor of a given input of the node.
Definition: INode.cpp:151
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:145
Utils.h
arm_compute::graph::NullTensorID
constexpr TensorID NullTensorID
Constant NodeID specifying an equivalent of null node.
Definition: Types.h:78
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:79
arm_compute::graph::FusedDepthwiseConvolutionBatchNormalizationNode::depthwise_convolution_method
DepthwiseConvolutionMethod depthwise_convolution_method() const
Depthwise convolution layer method accessor.
Definition: FusedDepthwiseConvolutionBatchNormalizationNode.cpp:51
Graph.h
input_height
const size_t input_height
Definition: impl.cpp:62
arm_compute::quantization::epsilon
constexpr float epsilon
Definition: AsymmHelpers.cpp:39