From c65023e01d8e5c8f5af15dd8e2ca4fae3c4889f9 Mon Sep 17 00:00:00 2001 From: Sheri Zhang Date: Wed, 3 Nov 2021 21:24:00 +0000 Subject: Refine code for graph level fusion Partially resolves: COMPMID-4701 Signed-off-by: Sheri Zhang Change-Id: I11fb89bd31ef5a98ad9a2d6bb5fd0c1e8371b52f Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6572 Comments-Addressed: Arm Jenkins Reviewed-by: Gunes Bayir Reviewed-by: SiCong Li Tested-by: Arm Jenkins --- .../graph/nodes/FusedConvolutionWithPostOpNode.h | 23 ++++++---------------- 1 file changed, 6 insertions(+), 17 deletions(-) (limited to 'arm_compute/graph/nodes') diff --git a/arm_compute/graph/nodes/FusedConvolutionWithPostOpNode.h b/arm_compute/graph/nodes/FusedConvolutionWithPostOpNode.h index 0bb3d1b7ef..6048994b02 100644 --- a/arm_compute/graph/nodes/FusedConvolutionWithPostOpNode.h +++ b/arm_compute/graph/nodes/FusedConvolutionWithPostOpNode.h @@ -72,16 +72,6 @@ public: * @return Fast math hint to be used by the node */ FastMathHint fast_math_hint() const; - /** Post operator info list - * - * @return Post operator info list - */ - const std::list> &post_op_info_list() const; - /** Post operator info list - * - * @return Post operator info list - */ - std::list> &post_op_info_list(); /** Convolution metadata accessor * * @return Convolution information @@ -129,13 +119,12 @@ public: static constexpr NodeType node_type = NodeType::FusedConvolutionWithPostOp; private: - PadStrideInfo _info; - unsigned int _num_groups; - ConvolutionMethod _method; - FastMathHint _fast_math_hint; - QuantizationInfo _out_quant_info; - ActivationLayerInfo _fused_activation; - std::list> _post_op_info_list; + PadStrideInfo _info; + unsigned int _num_groups; + ConvolutionMethod _method; + FastMathHint _fast_math_hint; + QuantizationInfo _out_quant_info; + ActivationLayerInfo _fused_activation; }; } // namespace graph } // namespace arm_compute -- cgit v1.2.1