From f07d28d9ee8ae73a93fe433f72855b6dcf58ad90 Mon Sep 17 00:00:00 2001 From: Isabella Gottardi Date: Tue, 6 Feb 2018 14:52:43 +0000 Subject: COMPMID-845: Create a ConvolutionLayer for CL Change-Id: Ifcc406d2d0a99c911d6b6c875657b0e0028255d5 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/119148 Tested-by: Jenkins Reviewed-by: Anthony Barbier Reviewed-by: Georgios Pinitas --- arm_compute/core/Types.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'arm_compute/core') diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h index 417369cd9b..24c73ca7c1 100644 --- a/arm_compute/core/Types.h +++ b/arm_compute/core/Types.h @@ -1058,5 +1058,13 @@ struct IOFormatInfo std::string row_delim; bool align_columns; }; + +/** Available ConvolutionMethod*/ +enum class ConvolutionMethod +{ + GEMM, /**< Convolution using GEMM */ + DIRECT, /**< Direct convolution */ + WINOGRAD /**< Convolution using Winograd */ +}; } #endif /* __ARM_COMPUTE_TYPES_H__ */ -- cgit v1.2.1