From 806b8e856911e6691ede6725c7e2a0e7e0dd6e95 Mon Sep 17 00:00:00 2001 From: Gunes Bayir Date: Wed, 23 Aug 2023 23:28:31 +0100 Subject: Add declare_constant_tile API function in CKW Resolves: COMPMID-6535 Change-Id: I07d8aca96a0fcbd624f828b24513ee0500a14a74 Signed-off-by: Gunes Bayir Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10200 Reviewed-by: Viet-Hoa Do Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins Benchmark: Arm Jenkins --- compute_kernel_writer/validation/Validation.cpp | 3 +++ 1 file changed, 3 insertions(+) (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 20957d90a5..3d73900c90 100644 --- a/compute_kernel_writer/validation/Validation.cpp +++ b/compute_kernel_writer/validation/Validation.cpp @@ -27,6 +27,7 @@ #include "validation/tests/CLKernelWriterBinaryOpTest.h" #include "validation/tests/CLKernelWriterCastTest.h" #include "validation/tests/CLKernelWriterCommentTest.h" +#include "validation/tests/CLKernelWriterDeclareConstantTileTest.h" #include "validation/tests/CLKernelWriterDeclareTensorTest.h" #include "validation/tests/CLKernelWriterDeclareTileTest.h" #include "validation/tests/CLKernelWriterOpLoadStoreTest.h" @@ -87,6 +88,7 @@ int32_t main() const auto test28 = std::make_unique(); const auto test29 = std::make_unique(); const auto test30 = std::make_unique(); + const auto test31 = std::make_unique(); tests.push_back(test3.get()); tests.push_back(test4.get()); @@ -118,6 +120,7 @@ int32_t main() tests.push_back(test28.get()); tests.push_back(test29.get()); tests.push_back(test30.get()); + tests.push_back(test31.get()); #endif /* COMPUTE_KERNEL_WRITER_OPENCL_ENABLED */ bool all_test_passed = true; -- cgit v1.2.1