From 797b76b1aef38ea3be6f68ae2bf323048e9beff8 Mon Sep 17 00:00:00 2001 From: Sang-Hoon Park Date: Wed, 11 Mar 2020 23:21:14 +0000 Subject: COMPMID-3221: Add EltwiseLayerDescriptor A new descriptor struct for EltwiseLayerNode is added to have better extendability. Change-Id: I3d0a4b3cec1f2425f39157cee6b5c344336412a3 Signed-off-by: Sang-Hoon Park Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2876 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio --- arm_compute/graph/nodes/EltwiseLayerNode.h | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'arm_compute/graph/nodes') diff --git a/arm_compute/graph/nodes/EltwiseLayerNode.h b/arm_compute/graph/nodes/EltwiseLayerNode.h index 1ca8e9c23d..21c220a548 100644 --- a/arm_compute/graph/nodes/EltwiseLayerNode.h +++ b/arm_compute/graph/nodes/EltwiseLayerNode.h @@ -36,12 +36,9 @@ class EltwiseLayerNode final : public INode public: /** Constructor * - * @param[in] op Element-wise operation to perform - * @param[in] out_quant_info (Optional) Output quantization information - * @param[in] c_policy (Optional) Convert policy used for the operation - * @param[in] r_policy (Optional) Rounding policy used for the operation + * @param[in] descriptor Containing information for the node described in @ref descriptors::EltwiseLayerDescriptor */ - EltwiseLayerNode(EltwiseOperation op, QuantizationInfo out_quant_info = QuantizationInfo(), ConvertPolicy c_policy = ConvertPolicy::SATURATE, RoundingPolicy r_policy = RoundingPolicy::TO_ZERO); + EltwiseLayerNode(const descriptors::EltwiseLayerDescriptor &descriptor); /** Eltwise operation accessor * * @return Eltwise operation that is to be performed by the node @@ -67,10 +64,7 @@ public: void accept(INodeVisitor &v) override; private: - EltwiseOperation _op; - QuantizationInfo _out_quant_info; - ConvertPolicy _convert_policy; - RoundingPolicy _rounding_policy; + descriptors::EltwiseLayerDescriptor descriptor; }; } // namespace graph } // namespace arm_compute -- cgit v1.2.1