From 47a396e3aae96f2dcad44f4e0d6cb6b87b368395 Mon Sep 17 00:00:00 2001 From: Gunes Bayir Date: Thu, 17 Aug 2023 11:04:02 +0100 Subject: Implement load/store API functions Add KernelWriter API functions for loading and storing tiles with and without dilations. Resolves: COMPMID-5791, COMPMID-6389 Change-Id: I9b1f5b2f081fa54e7bda488aac69ed8d43d1d35c Signed-off-by: Gunes Bayir Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10152 Tested-by: Arm Jenkins Reviewed-by: Jakub Sujak Reviewed-by: Viet-Hoa Do Comments-Addressed: Arm Jenkins Benchmark: Arm Jenkins --- compute_kernel_writer/validation/Validation.cpp | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'compute_kernel_writer/validation/Validation.cpp') diff --git a/compute_kernel_writer/validation/Validation.cpp b/compute_kernel_writer/validation/Validation.cpp index f8ee27cee0..3755986cf4 100644 --- a/compute_kernel_writer/validation/Validation.cpp +++ b/compute_kernel_writer/validation/Validation.cpp @@ -22,14 +22,15 @@ * SOFTWARE. */ -#include "tests/CLConstantTileTest.hpp" -#include "tests/CLKernelWriterCommentTest.h" -#include "tests/CLKernelWriterDeclareTileTest.h" -#include "tests/CLTensorArgumentTest.h" -#include "tests/CLTileTest.hpp" -#include "tests/TensorBitMaskTest.h" -#include "tests/UtilsTest.h" +#include "validation/tests/CLConstantTileTest.hpp" +#include "validation/tests/CLKernelWriterCommentTest.h" +#include "validation/tests/CLKernelWriterDeclareTileTest.h" +#include "validation/tests/CLTensorArgumentTest.h" +#include "validation/tests/CLTileTest.hpp" +#include "validation/tests/TensorBitMaskTest.h" +#include "validation/tests/UtilsTest.h" #include "validation/tests/CLKernelWriterDeclareTensorTest.h" +#include "validation/tests/CLKernelWriterOpLoadStoreTest.h" #include #include @@ -75,6 +76,7 @@ int32_t main() const auto test22 = std::make_unique(); const auto test23 = std::make_unique(); const auto test24 = std::make_unique(); + const auto test25 = std::make_unique(); tests.push_back(test3.get()); tests.push_back(test4.get()); @@ -100,6 +102,7 @@ int32_t main() tests.push_back(test22.get()); tests.push_back(test23.get()); tests.push_back(test24.get()); + tests.push_back(test25.get()); #endif /* COMPUTE_KERNEL_WRITER_OPENCL_ENABLED */ bool all_test_passed = true; -- cgit v1.2.1