aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer/validation/Validation.cpp
diff options
context:
space:
mode:
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 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<CLKernelWriterUnaryExpressionTest>();
const auto test29 = std::make_unique<CLKernelWriterBinaryOpTest>();
const auto test30 = std::make_unique<CLKernelWriterTernaryOpTest>();
+ const auto test31 = std::make_unique<CLKernelWriterDeclareConstantTileTest>();
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;