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.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;