aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/Types.h
diff options
context:
space:
mode:
authorIsabella Gottardi <isabella.gottardi@arm.com>2018-02-06 14:52:43 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:47:18 +0000
commitf07d28d9ee8ae73a93fe433f72855b6dcf58ad90 (patch)
tree6ad19c89540f36e1ba5c6af7ff061bee773c43d6 /arm_compute/core/Types.h
parent21f67d6763c82d78278f6bca6c6f9e42bb5ee1b9 (diff)
downloadComputeLibrary-f07d28d9ee8ae73a93fe433f72855b6dcf58ad90.tar.gz
COMPMID-845: Create a ConvolutionLayer for CL
Change-Id: Ifcc406d2d0a99c911d6b6c875657b0e0028255d5 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/119148 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'arm_compute/core/Types.h')
-rw-r--r--arm_compute/core/Types.h8
1 files changed, 8 insertions, 0 deletions
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__ */