From a2b131bf4680f83b10a7e3544b6183279d8c2691 Mon Sep 17 00:00:00 2001 From: SiCong Li Date: Fri, 4 Nov 2022 10:11:32 +0000 Subject: Fix compiler warnings in dynamic fusion Resolves: COMPMID-5686 Change-Id: I608c359583c44f2f04f29faddd1c6b38a381de60 Signed-off-by: SiCong Li Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/8562 Benchmark: Arm Jenkins Reviewed-by: Jakub Sujak Reviewed-by: Gunes Bayir Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- arm_compute/core/experimental/OperatorGraph.h | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) (limited to 'arm_compute/core') diff --git a/arm_compute/core/experimental/OperatorGraph.h b/arm_compute/core/experimental/OperatorGraph.h index cab83c7f8b..f2e352146f 100644 --- a/arm_compute/core/experimental/OperatorGraph.h +++ b/arm_compute/core/experimental/OperatorGraph.h @@ -128,21 +128,6 @@ private: */ bool operator<(const Operator &op0, const Operator &op1); -/** Padding information for 2D operations like Conv2dDescriptor - */ -struct Padding2D -{ - Padding2D() = default; - Padding2D(size_t left, size_t right, size_t top, size_t bottom) - : left(left), right(right), top(top), bottom(bottom) - { - } - size_t left = { 0 }; /**< Padding across the width dimension on the left, in elements. */ - size_t right = { 0 }; /**< Padding across the width dimension on the right, in elements. */ - size_t top = { 0 }; /**< Padding across the height dimension on the top, in elements. */ - size_t bottom = { 0 }; /**< Padding across the height dimension on the bottom, in elements. */ -}; - /** Descriptor for Conv2dDescriptor operation */ struct Conv2dDescriptor @@ -230,4 +215,4 @@ bool operator==(const FloorDescriptor &, const FloorDescriptor &); } // namespace experimental } // namespace arm_compute #endif //ARM_COMPUTE_EXPERIMENTAL_DYNAMICFUSION_OPERATORGRAPH -#endif /* ENABLE_EXPERIMENTAL_DYNAMIC_FUSION */ \ No newline at end of file +#endif /* ENABLE_EXPERIMENTAL_DYNAMIC_FUSION */ -- cgit v1.2.1