From 6800117df3be825f0ec5c6cc71c4377322f51b99 Mon Sep 17 00:00:00 2001 From: Sang-Hoon Park Date: Fri, 6 Mar 2020 16:32:01 +0000 Subject: COMPMID-3221: (DATA_UPDATE) add graph example for EDSR Change-Id: Id74190e2af444da8dab4813fd65016104f3882a9 Signed-off-by: Sang-Hoon Park Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2862 Tested-by: Arm Jenkins Reviewed-by: Georgios Pinitas Comments-Addressed: Arm Jenkins --- arm_compute/graph/nodes/DeconvolutionLayerNode.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'arm_compute/graph/nodes/DeconvolutionLayerNode.h') 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 -- cgit v1.2.1