blob: c55c7c0c07e4719f47b5f919a6bd16a88c3ffc95 [file] [log] [blame]
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +00001/*
2 * Copyright (c) 2023 Arm Limited.
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24
Gunes Bayir47a396e2023-08-17 11:04:02 +010025#include "validation/tests/CLConstantTileTest.hpp"
Viet-Hoa Doe1c3b462023-07-31 17:13:34 +010026#include "validation/tests/CLKernelWriterAssignTest.h"
27#include "validation/tests/CLKernelWriterCastTest.h"
Gunes Bayir47a396e2023-08-17 11:04:02 +010028#include "validation/tests/CLKernelWriterCommentTest.h"
Viet-Hoa Doe1c3b462023-07-31 17:13:34 +010029#include "validation/tests/CLKernelWriterDeclareTensorTest.h"
Gunes Bayir47a396e2023-08-17 11:04:02 +010030#include "validation/tests/CLKernelWriterDeclareTileTest.h"
Viet-Hoa Doe1c3b462023-07-31 17:13:34 +010031#include "validation/tests/CLKernelWriterOpLoadStoreTest.h"
32#include "validation/tests/CLKernelWriterUnaryExpressionTest.h"
Gunes Bayir47a396e2023-08-17 11:04:02 +010033#include "validation/tests/CLTensorArgumentTest.h"
34#include "validation/tests/CLTileTest.hpp"
35#include "validation/tests/TensorBitMaskTest.h"
36#include "validation/tests/UtilsTest.h"
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000037
38#include <memory>
39#include <vector>
40
41using namespace ckw;
42
43/** Main test program
44 */
45int32_t main()
46{
Nikolaj Jensenacea4072023-07-03 09:44:42 +010047 std::vector<ITest *> tests;
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000048
49 // Add your test here
50 const auto test0 = std::make_unique<UtilsTest>();
51 const auto test1 = std::make_unique<TensorBitMaskTrueTest>();
52 const auto test2 = std::make_unique<TensorBitMaskFalseTest>();
Jakub Sujakdf5d9872023-05-22 17:38:56 +010053 tests.push_back(test0.get());
54 tests.push_back(test1.get());
55 tests.push_back(test2.get());
56
57#ifdef COMPUTE_KERNEL_WRITER_OPENCL_ENABLED
Nikolaj Jensenacea4072023-07-03 09:44:42 +010058 const auto test3 = std::make_unique<CLTileInternalVariableNamesTest>();
59 const auto test4 = std::make_unique<CLTileInternalNumVariablesTest>();
60 const auto test5 = std::make_unique<CLTileAccessScalarVariableTest>();
61 const auto test6 = std::make_unique<CLTileAccessScalarVariableBroadcastXTest>();
62 const auto test7 = std::make_unique<CLTileAccessScalarVariableBroadcastYTest>();
63 const auto test8 = std::make_unique<CLTileAccessVectorVariablesTest>();
64 const auto test9 = std::make_unique<CLTileAccessSubVectorVariablesTest>();
Gian Marco Iodice68e9c4d2023-06-15 17:40:28 +010065 const auto test10 = std::make_unique<CLConstantTileInternalValuesTest>();
66 const auto test11 = std::make_unique<CLConstantTileAccessScalarVariableBroadcastXTest>();
67 const auto test12 = std::make_unique<CLConstantTileAccessScalarVariableBroadcastYTest>();
68 const auto test13 = std::make_unique<CLConstantTileAccessVectorVariablesTest>();
69 const auto test14 = std::make_unique<CLConstantTileAccessSubVectorVariablesTest>();
Gunes Bayirab0b7502023-07-11 14:57:36 +010070#ifdef COMPUTE_KERNEL_WRITER_DEBUG_ENABLED
Viet-Hoa Do3389f532023-07-05 17:36:40 +010071 const auto test15 = std::make_unique<CLKernelWriterCommentTest>();
Gunes Bayirab0b7502023-07-11 14:57:36 +010072#endif /* COMPUTE_KERNEL_WRITER_DEBUG_ENABLED */
73 const auto test16 = std::make_unique<CLKernelWriterDeclareTileTest>();
Gian Marco Iodiceebfdb5a2023-07-07 11:25:57 +010074 const auto test17 = std::make_unique<CLTensorArgumentComponentNamesTest>();
75 const auto test18 = std::make_unique<CLTensorArgumentStorageNamesTest>();
76 const auto test19 = std::make_unique<CLTensorArgumentComponentValuesTest>();
77 const auto test20 = std::make_unique<CLTensorArgumentComponentsUsedPassByValueFalseTest>();
78 const auto test21 = std::make_unique<CLTensorArgumentComponentsUsedPassByValueTrueTest>();
79 const auto test22 = std::make_unique<CLTensorArgumentStoragesUsedTest>();
80 const auto test23 = std::make_unique<CLTensorArgumentComponentsUsedPassByValueTrueDynamicDimTrueTest>();
Viet-Hoa Do1df9f6e2023-07-24 17:57:12 +010081 const auto test24 = std::make_unique<CLKernelWriterDeclareTensorTest>();
Gunes Bayir47a396e2023-08-17 11:04:02 +010082 const auto test25 = std::make_unique<CLKernelWriterOpLoadStoreTest>();
Viet-Hoa Doe1c3b462023-07-31 17:13:34 +010083 const auto test26 = std::make_unique<CLKernelWriterAssignTest>();
84 const auto test27 = std::make_unique<CLKernelWriterCastTest>();
85 const auto test28 = std::make_unique<CLKernelWriterUnaryExpressionTest>();
Gian Marco Iodice68e9c4d2023-06-15 17:40:28 +010086
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000087 tests.push_back(test3.get());
88 tests.push_back(test4.get());
89 tests.push_back(test5.get());
90 tests.push_back(test6.get());
91 tests.push_back(test7.get());
Gian Marco Iodice68e9c4d2023-06-15 17:40:28 +010092 tests.push_back(test8.get());
93 tests.push_back(test9.get());
94 tests.push_back(test10.get());
95 tests.push_back(test11.get());
96 tests.push_back(test12.get());
97 tests.push_back(test13.get());
98 tests.push_back(test14.get());
Gunes Bayirab0b7502023-07-11 14:57:36 +010099#ifdef COMPUTE_KERNEL_WRITER_DEBUG_ENABLED
Viet-Hoa Do3389f532023-07-05 17:36:40 +0100100 tests.push_back(test15.get());
Gunes Bayirab0b7502023-07-11 14:57:36 +0100101#endif /* COMPUTE_KERNEL_WRITER_DEBUG_ENABLED */
102 tests.push_back(test16.get());
Gian Marco Iodiceebfdb5a2023-07-07 11:25:57 +0100103 tests.push_back(test17.get());
104 tests.push_back(test18.get());
105 tests.push_back(test19.get());
106 tests.push_back(test20.get());
107 tests.push_back(test21.get());
108 tests.push_back(test22.get());
109 tests.push_back(test23.get());
Viet-Hoa Do1df9f6e2023-07-24 17:57:12 +0100110 tests.push_back(test24.get());
Viet-Hoa Doe1c3b462023-07-31 17:13:34 +0100111 CKW_UNUSED(test25); // CLKernelWriterOpLoadStoreTest test needs further changes.
112 tests.push_back(test26.get());
113 tests.push_back(test27.get());
114 tests.push_back(test28.get());
Jakub Sujakdf5d9872023-05-22 17:38:56 +0100115#endif /* COMPUTE_KERNEL_WRITER_OPENCL_ENABLED */
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +0000116
117 bool all_test_passed = true;
118
119 for(auto &x : tests)
120 {
121 std::cout << x->name() << std::endl;
122 all_test_passed &= x->run();
123 }
124
125 if(all_test_passed == true)
126 {
127 std::cout << "All tests passed" << std::endl;
128 }
129 else
130 {
Viet-Hoa Do7644b912023-06-29 13:56:17 +0100131 throw std::runtime_error("One or more tests failed");
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +0000132 }
133
134 return 0;
135}