aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2023-08-04 15:26:41 +0100
committerViet-Hoa Do <viet-hoa.do@arm.com>2023-08-07 08:42:14 +0000
commit78ce2730ecd2f1e666cdd10263bf054c0b740a9c (patch)
treed7c6f35a87c2f417299fde5441dd622cedceca95 /compute_kernel_writer
parent4f76a00a40947b9e3549c18d319cf057c6f0271e (diff)
downloadComputeLibrary-78ce2730ecd2f1e666cdd10263bf054c0b740a9c.tar.gz
Document the Conv2D heuristic
- Add a new section in the documentation to describe how the conv2D heuristic works on Arm® Cortex®-based CPUs and Arm® Mali™-based GPUs - Add CKW_UNUSED in compute_kernel_writer/src/cl/CLTile.cpp to avoid the compilation error due to an unused variable - Remove FFT from the list of algorithms to be selected by the CPU Conv2d heuristic. Resolves COMPMID-6163 Signed-off-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Change-Id: I51384d7749451b2562642683e8b2429a355166bb Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10065 Benchmark: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Jakub Sujak <jakub.sujak@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'compute_kernel_writer')
-rw-r--r--compute_kernel_writer/src/cl/CLTile.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/compute_kernel_writer/src/cl/CLTile.cpp b/compute_kernel_writer/src/cl/CLTile.cpp
index c6cf47d831..013ac4c276 100644
--- a/compute_kernel_writer/src/cl/CLTile.cpp
+++ b/compute_kernel_writer/src/cl/CLTile.cpp
@@ -224,6 +224,7 @@ std::vector<int32_t> CLTile::supported_vector_lengths() const
void CLTile::validate_tile_info(const TileInfo &info) const
{
+ CKW_UNUSED(info);
CKW_ASSERT_MSG(cl_validate_vector_length(info.width()), "Unsupported TileInfo width");
CKW_ASSERT_MSG(info.data_type() != DataType::Unknown, "DataType::Unknown is not supported");
}