aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/graph/nodes/DeconvolutionLayerNode.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/graph/nodes/DeconvolutionLayerNode.h')
-rw-r--r--arm_compute/graph/nodes/DeconvolutionLayerNode.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/arm_compute/graph/nodes/DeconvolutionLayerNode.h b/arm_compute/graph/nodes/DeconvolutionLayerNode.h
index 09601ab69e..5633898366 100644
--- a/arm_compute/graph/nodes/DeconvolutionLayerNode.h
+++ b/arm_compute/graph/nodes/DeconvolutionLayerNode.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018-2019 ARM Limited.
+ * Copyright (c) 2018-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -36,9 +36,10 @@ class DeconvolutionLayerNode final : public INode
public:
/** Constructor
*
- * @param[in] info DeConvolution layer attributes
+ * @param[in] info DeConvolution layer attributes
+ * @param[in] out_quant_info (Optional) Output quantization infomation
*/
- DeconvolutionLayerNode(PadStrideInfo info);
+ DeconvolutionLayerNode(PadStrideInfo info, QuantizationInfo out_quant_info = QuantizationInfo());
/** Deconvolution metadata accessor
*
* @return Deconvolution information
@@ -63,7 +64,8 @@ public:
void accept(INodeVisitor &v) override;
private:
- PadStrideInfo _info;
+ PadStrideInfo _info;
+ QuantizationInfo _out_quant_info;
};
} // namespace graph
} // namespace arm_compute