aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/graph/nodes/FusedConvolutionBatchNormalizationNode.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/graph/nodes/FusedConvolutionBatchNormalizationNode.h')
-rw-r--r--arm_compute/graph/nodes/FusedConvolutionBatchNormalizationNode.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/arm_compute/graph/nodes/FusedConvolutionBatchNormalizationNode.h b/arm_compute/graph/nodes/FusedConvolutionBatchNormalizationNode.h
index b3661c300f..d891ea49eb 100644
--- a/arm_compute/graph/nodes/FusedConvolutionBatchNormalizationNode.h
+++ b/arm_compute/graph/nodes/FusedConvolutionBatchNormalizationNode.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019 Arm Limited.
+ * Copyright (c) 2019, 2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -43,7 +43,8 @@ public:
* @param[in] fast_math_hint (Optional) Fast math hint
* @param[in] fused_activation (Optional) Fused activation layer. Disabled if not specified
*/
- FusedConvolutionBatchNormalizationNode(float epsilon, PadStrideInfo info,
+ FusedConvolutionBatchNormalizationNode(float epsilon,
+ PadStrideInfo info,
unsigned int num_groups = 1,
ConvolutionMethod method = ConvolutionMethod::Default,
FastMathHint fast_math_hint = FastMathHint::Disabled,
@@ -100,7 +101,7 @@ public:
*/
ConvolutionMethod convolution_method() const;
- /** Sets the fast math fast hint
+ /** Sets the fast math hint
*
* @param[in] hint Hint to use for convolution
*/
@@ -122,7 +123,7 @@ public:
NodeType type() const override;
bool forward_descriptors() override;
TensorDescriptor configure_output(size_t idx) const override;
- void accept(INodeVisitor &v) override;
+ void accept(INodeVisitor &v) override;
public:
static constexpr NodeType node_type = NodeType::FusedConvolutionBatchNormalizationLayer;