aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer/validation/Validation.cpp
diff options
context:
space:
mode:
authorViet-Hoa Do <viet-hoa.do@arm.com>2023-07-24 17:57:12 +0100
committerViet-Hoa Do <viet-hoa.do@arm.com>2023-08-07 15:21:15 +0000
commit1df9f6ed4245489b74875893c695367bd0d6e3d8 (patch)
treee07d50f11cb42faded79caae04a82d7a133450a1 /compute_kernel_writer/validation/Validation.cpp
parent64a4c441efca0256baac0a8673f95c23a6b3a34c (diff)
downloadComputeLibrary-1df9f6ed4245489b74875893c695367bd0d6e3d8.tar.gz
Add kernel argument emitting
Resolves: COMPMID-6391 Signed-off-by: Viet-Hoa Do <viet-hoa.do@arm.com> Change-Id: I0d54d99ffad275400c6da7fe16deb544553060eb Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10004 Reviewed-by: Anitha Raj <Anitha.Raj@arm.com> Reviewed-by: Gunes Bayir <gunes.bayir@arm.com> Tested-by: Arm Jenkins <bsgcomp@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.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/compute_kernel_writer/validation/Validation.cpp b/compute_kernel_writer/validation/Validation.cpp
index 5d53a16eff..f8ee27cee0 100644
--- a/compute_kernel_writer/validation/Validation.cpp
+++ b/compute_kernel_writer/validation/Validation.cpp
@@ -29,6 +29,7 @@
#include "tests/CLTileTest.hpp"
#include "tests/TensorBitMaskTest.h"
#include "tests/UtilsTest.h"
+#include "validation/tests/CLKernelWriterDeclareTensorTest.h"
#include <memory>
#include <vector>
@@ -73,6 +74,7 @@ int32_t main()
const auto test21 = std::make_unique<CLTensorArgumentComponentsUsedPassByValueTrueTest>();
const auto test22 = std::make_unique<CLTensorArgumentStoragesUsedTest>();
const auto test23 = std::make_unique<CLTensorArgumentComponentsUsedPassByValueTrueDynamicDimTrueTest>();
+ const auto test24 = std::make_unique<CLKernelWriterDeclareTensorTest>();
tests.push_back(test3.get());
tests.push_back(test4.get());
@@ -97,6 +99,7 @@ int32_t main()
tests.push_back(test21.get());
tests.push_back(test22.get());
tests.push_back(test23.get());
+ tests.push_back(test24.get());
#endif /* COMPUTE_KERNEL_WRITER_OPENCL_ENABLED */
bool all_test_passed = true;