23.08
|
Go to the documentation of this file.
24 #ifndef ARM_COMPUTE_GRAPH_FUSED_DEPTHWISE_CONVOLUTION_BATCH_NORMALIZATION_NODE_H
25 #define ARM_COMPUTE_GRAPH_FUSED_DEPTHWISE_CONVOLUTION_BATCH_NORMALIZATION_NODE_H
129 unsigned int _depth_multiplier;
void set_fused_activation(ActivationLayerInfo fused_activation)
Sets fused activation.
ActivationLayerInfo fused_activation() const
Returns fused activation.
bool forward_descriptors() override
Forwards descriptor information to outputs if possible.
PadStrideInfo convolution_info() const
Convolution metadata accessor.
void accept(INodeVisitor &v) override
Accepts a node visitor.
unsigned int depth_multiplier() const
Depth multiplier accessor.
TensorDescriptor configure_output(size_t idx) const override
Calculates output configuration.
@ FusedDepthwiseConvolutionBatchNormalizationLayer
Activation Layer Information class.
float epsilon() const
Epsilon parameter accessor.
static constexpr NodeType node_type
void set_depthwise_convolution_method(DepthwiseConvolutionMethod method)
Sets the depthwise convolution layer method to use.
FusedDepthwiseConvolutionBatchNormalizationNode(float epsilon, PadStrideInfo info, unsigned int depth_multiplier, DepthwiseConvolutionMethod method, ActivationLayerInfo fused_activation=ActivationLayerInfo())
Constructor.
NodeType type() const override
Returns node's type.
ConvolutionMethod
Supported Convolution layer methods.
Copyright (c) 2017-2023 Arm Limited.
static TensorDescriptor compute_output_descriptor(const TensorDescriptor &input_descriptor, const TensorDescriptor &weights_descriptor, const PadStrideInfo &info, int depth_multiplier)
Computes convolution output descriptor.
DepthwiseConvolutionMethod
Supported Depthwise Convolution layer methods.
ScaleKernelInfo info(interpolation_policy, default_border_mode, PixelValue(), sampling_policy, false)
void set_convolution_method(ConvolutionMethod method)
Sets the convolution layer method to use.
DepthwiseConvolutionMethod depthwise_convolution_method() const
Depthwise convolution layer method accessor.
Fused Depthwise Convolution Batch Normalization node.