From 46a49a0a8206f0efa7afd514940e180a88ffd732 Mon Sep 17 00:00:00 2001 From: giuros01 Date: Mon, 1 Apr 2019 13:50:22 +0100 Subject: COMPMID-1635: Optimize CLDeconvolutionLayer - Part III Change-Id: Id2661e093a669ef3eaf2a5116cd278a80c1d5a89 Signed-off-by: giuros01 Reviewed-on: https://review.mlplatform.org/c/935 Reviewed-by: Gian Marco Iodice Comments-Addressed: Gian Marco Iodice Reviewed-by: Isabella Gottardi Comments-Addressed: Isabella Gottardi Tested-by: Isabella Gottardi Tested-by: Arm Jenkins --- arm_compute/core/Types.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'arm_compute/core/Types.h') diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h index 24e91bd3c5..a2dfbb7d82 100644 --- a/arm_compute/core/Types.h +++ b/arm_compute/core/Types.h @@ -134,6 +134,13 @@ enum class ConvolutionMethod FFT /**< Convolution using FFT */ }; +/** Available DeconvolutionMethod*/ +enum class DeconvolutionMethod +{ + GEMM, /**< Deconvolution using GEMM */ + DIRECT, /**< Direct deconvolution */ +}; + /** Padding mode to use for PadLayer */ enum class PaddingMode { -- cgit v1.2.1