aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer/validation/Validation.cpp
diff options
context:
space:
mode:
authorGunes Bayir <gunes.bayir@arm.com>2023-08-17 11:04:02 +0100
committerGunes Bayir <gunes.bayir@arm.com>2023-08-18 15:34:49 +0000
commit47a396e3aae96f2dcad44f4e0d6cb6b87b368395 (patch)
tree454123cb8c47a90d7baf57b0f296c2baa18615de /compute_kernel_writer/validation/Validation.cpp
parent580ecd750ed76c72d59a8b8d23566686e6aa9c7b (diff)
downloadComputeLibrary-47a396e3aae96f2dcad44f4e0d6cb6b87b368395.tar.gz
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 <gunes.bayir@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10152 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Jakub Sujak <jakub.sujak@arm.com> Reviewed-by: Viet-Hoa Do <viet-hoa.do@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Benchmark: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'compute_kernel_writer/validation/Validation.cpp')
-rw-r--r--compute_kernel_writer/validation/Validation.cpp17
1 files changed, 10 insertions, 7 deletions
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 <memory>
#include <vector>
@@ -75,6 +76,7 @@ int32_t main()
const auto test22 = std::make_unique<CLTensorArgumentStoragesUsedTest>();
const auto test23 = std::make_unique<CLTensorArgumentComponentsUsedPassByValueTrueDynamicDimTrueTest>();
const auto test24 = std::make_unique<CLKernelWriterDeclareTensorTest>();
+ const auto test25 = std::make_unique<CLKernelWriterOpLoadStoreTest>();
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;