aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core
diff options
context:
space:
mode:
authorSiCong Li <sicong.li@arm.com>2022-11-04 10:11:32 +0000
committerSiCong Li <sicong.li@arm.com>2022-11-04 13:47:35 +0000
commita2b131bf4680f83b10a7e3544b6183279d8c2691 (patch)
treea39f36d4e330ac5c0ff36feffc809224d159854f /arm_compute/core
parentd7c5d7d3635e43658123a0a5b2c1b77c81b9c26d (diff)
downloadComputeLibrary-a2b131bf4680f83b10a7e3544b6183279d8c2691.tar.gz
Fix compiler warnings in dynamic fusion
Resolves: COMPMID-5686 Change-Id: I608c359583c44f2f04f29faddd1c6b38a381de60 Signed-off-by: SiCong Li <sicong.li@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/8562 Benchmark: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Jakub Sujak <jakub.sujak@arm.com> Reviewed-by: Gunes Bayir <gunes.bayir@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/core')
-rw-r--r--arm_compute/core/experimental/OperatorGraph.h17
1 files changed, 1 insertions, 16 deletions
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 */