aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core
diff options
context:
space:
mode:
authorGian Marco Iodice <giaiod01@e127878.cambridge.arm.com>2022-12-28 13:53:51 +0000
committerGian Marco Iodice <gianmarco.iodice@arm.com>2022-12-29 15:26:32 +0000
commita5cb79f18685292bf5b63a0c484a58945320823d (patch)
tree8f65f1781d0d8c7c0c1b2458e3f3707c789e4b43 /arm_compute/core
parent8a2d7cecea194ac8eafa91721fb5b09ae01e5971 (diff)
downloadComputeLibrary-a5cb79f18685292bf5b63a0c484a58945320823d.tar.gz
Update the ClConv2d heuristic
- Update the ClConv2d heuristic to call indirect convolution on Arm® Mali™-G77 Gpus - Implement the indirect conv2d heuristic for selecting the block size Resolves COMPMID-5713 Change-Id: If6ad49124561207153685c6abd4f54950a376fbc Signed-off-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/8886 Benchmark: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Gunes Bayir <gunes.bayir@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/core')
-rw-r--r--arm_compute/core/Types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h
index d5a4125c88..24ef931e88 100644
--- a/arm_compute/core/Types.h
+++ b/arm_compute/core/Types.h
@@ -136,6 +136,7 @@ enum class ConvolutionMethod
GEMM, /**< Convolution using GEMM */
GEMM_CONV2D, /**< Direct 2D GEMM convolution */
DIRECT, /**< Direct convolution */
+ INDIRECT, /**< Indirect convolution */
WINOGRAD, /**< Convolution using Winograd */
FFT /**< Convolution using FFT */
};