aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/graph
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-02-05 19:58:15 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:47:40 +0000
commit7ef90180584d2994ae43f222818e2bbd5288ffa4 (patch)
tree5e9fb3e56850a3fb7da020fe760c33569c3b43b0 /arm_compute/graph
parent1a03d76786a59a7d20deabb02f047516e98680d4 (diff)
downloadComputeLibrary-7ef90180584d2994ae43f222818e2bbd5288ffa4.tar.gz
COMPMID-765: Add Winograd Convolution Hint for NEON Convolution
Change-Id: I6ca59689df2b196de4960a62216c37780a04684e Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/118959 Reviewed-by: Pablo Tello <pablo.tello@arm.com> Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Tested-by: Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/graph')
-rw-r--r--arm_compute/graph/Types.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/arm_compute/graph/Types.h b/arm_compute/graph/Types.h
index a5d6ae8459..db5bbb8604 100644
--- a/arm_compute/graph/Types.h
+++ b/arm_compute/graph/Types.h
@@ -83,8 +83,9 @@ enum class TargetHint
/** Convolution method hint to the graph executor */
enum class ConvolutionMethodHint
{
- GEMM, /**< Convolution using GEMM */
- DIRECT /**< Direct convolution */
+ GEMM, /**< Convolution using GEMM */
+ DIRECT, /**< Direct convolution */
+ WINOGRAD /**< Winograd convolution */
};
/** Supported layer operations */