From d7647d4ebd0f0b5253b7f31ffcd48a851ba62947 Mon Sep 17 00:00:00 2001 From: Giuseppe Rossini Date: Tue, 17 Jul 2018 18:13:13 +0100 Subject: [COMPMID-1229] Implementing Pad on OpenCL -FP32/FP16 Change-Id: Ideead99410e5e0bda1035030af1bbcd0a65ea15e Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/144792 Tested-by: bsgcomp Reviewed-by: Georgios Pinitas --- arm_compute/core/Types.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'arm_compute/core/Types.h') diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h index 31f2c88278..4c81e1f700 100644 --- a/arm_compute/core/Types.h +++ b/arm_compute/core/Types.h @@ -470,6 +470,12 @@ struct Coordinates3D uint32_t z; /**< Z coordinates */ }; +/** Padding information as a pair of unsigned int start/end */ +using PaddingInfo = std::pair; + +/** List of padding information */ +using PaddingList = std::vector; + /** Region of interest */ struct ROI { -- cgit v1.2.1