aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer/validation/Validation.cpp
diff options
context:
space:
mode:
authorGunes Bayir <gunes.bayir@arm.com>2023-07-11 14:57:36 +0100
committerGunes Bayir <gunes.bayir@arm.com>2023-07-12 10:09:19 +0000
commitab0b75054ca3ddd62cff34518f331aa8474daa5a (patch)
treebf23ec6a1baee5b7359af1b91fb4b3a462760e2f /compute_kernel_writer/validation/Validation.cpp
parent653b96c9a72b2b6d4d82d6ee67b51be66351c617 (diff)
downloadComputeLibrary-ab0b75054ca3ddd62cff34518f331aa8474daa5a.tar.gz
Add tile declaration capability in KernelWriter
Resolves: COMPMID-5816 Signed-off-by: Gunes Bayir <gunes.bayir@arm.com> Change-Id: Ibd885707a842550a058252f9d01e072129896055 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9901 Tested-by: Arm Jenkins <bsgcomp@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.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/compute_kernel_writer/validation/Validation.cpp b/compute_kernel_writer/validation/Validation.cpp
index c0bdaaa0dc..e4884fa4aa 100644
--- a/compute_kernel_writer/validation/Validation.cpp
+++ b/compute_kernel_writer/validation/Validation.cpp
@@ -22,11 +22,12 @@
* SOFTWARE.
*/
+#include "tests/CLKernelWriterCommentTest.h"
+#include "tests/CLKernelWriterDeclareTileTest.h"
#include "tests/CLConstantTileTest.hpp"
#include "tests/CLTileTest.hpp"
#include "tests/TensorBitMaskTest.hpp"
#include "tests/UtilsTest.hpp"
-#include "tests/CLKernelWriterTest.h"
#include <memory>
#include <vector>
@@ -60,7 +61,10 @@ int32_t main()
const auto test12 = std::make_unique<CLConstantTileAccessScalarVariableBroadcastYTest>();
const auto test13 = std::make_unique<CLConstantTileAccessVectorVariablesTest>();
const auto test14 = std::make_unique<CLConstantTileAccessSubVectorVariablesTest>();
+#ifdef COMPUTE_KERNEL_WRITER_DEBUG_ENABLED
const auto test15 = std::make_unique<CLKernelWriterCommentTest>();
+#endif /* COMPUTE_KERNEL_WRITER_DEBUG_ENABLED */
+ const auto test16 = std::make_unique<CLKernelWriterDeclareTileTest>();
tests.push_back(test3.get());
tests.push_back(test4.get());
@@ -74,7 +78,10 @@ int32_t main()
tests.push_back(test12.get());
tests.push_back(test13.get());
tests.push_back(test14.get());
+#ifdef COMPUTE_KERNEL_WRITER_DEBUG_ENABLED
tests.push_back(test15.get());
+#endif /* COMPUTE_KERNEL_WRITER_DEBUG_ENABLED */
+ tests.push_back(test16.get());
#endif /* COMPUTE_KERNEL_WRITER_OPENCL_ENABLED */
bool all_test_passed = true;