blob: 20957d90a57bc7b088a3eae4c79cfab746da58d6 [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"
Viet-Hoa Do34b6c3a2023-08-22 11:11:23 +010027#include "validation/tests/CLKernelWriterBinaryOpTest.h"
Viet-Hoa Doe1c3b462023-07-31 17:13:34 +010028#include "validation/tests/CLKernelWriterCastTest.h"
Gunes Bayir47a396e2023-08-17 11:04:02 +010029#include "validation/tests/CLKernelWriterCommentTest.h"
Viet-Hoa Doe1c3b462023-07-31 17:13:34 +010030#include "validation/tests/CLKernelWriterDeclareTensorTest.h"
Gunes Bayir47a396e2023-08-17 11:04:02 +010031#include "validation/tests/CLKernelWriterDeclareTileTest.h"
Viet-Hoa Doe1c3b462023-07-31 17:13:34 +010032#include "validation/tests/CLKernelWriterOpLoadStoreTest.h"
Viet-Hoa Do34b6c3a2023-08-22 11:11:23 +010033#include "validation/tests/CLKernelWriterTernaryOpTest.h"
Viet-Hoa Doe1c3b462023-07-31 17:13:34 +010034#include "validation/tests/CLKernelWriterUnaryExpressionTest.h"
Gunes Bayir47a396e2023-08-17 11:04:02 +010035#include "validation/tests/CLTensorArgumentTest.h"
36#include "validation/tests/CLTileTest.hpp"
37#include "validation/tests/TensorBitMaskTest.h"
38#include "validation/tests/UtilsTest.h"
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000039
40#include <memory>
41#include <vector>
42
43using namespace ckw;
44
45/** Main test program
46 */
47int32_t main()
48{
Nikolaj Jensenacea4072023-07-03 09:44:42 +010049 std::vector<ITest *> tests;
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000050
51 // Add your test here
52 const auto test0 = std::make_unique<UtilsTest>();
53 const auto test1 = std::make_unique<TensorBitMaskTrueTest>();
54 const auto test2 = std::make_unique<TensorBitMaskFalseTest>();
Jakub Sujakdf5d9872023-05-22 17:38:56 +010055 tests.push_back(test0.get());
56 tests.push_back(test1.get());
57 tests.push_back(test2.get());
58
59#ifdef COMPUTE_KERNEL_WRITER_OPENCL_ENABLED
Nikolaj Jensenacea4072023-07-03 09:44:42 +010060 const auto test3 = std::make_unique<CLTileInternalVariableNamesTest>();
61 const auto test4 = std::make_unique<CLTileInternalNumVariablesTest>();
62 const auto test5 = std::make_unique<CLTileAccessScalarVariableTest>();
63 const auto test6 = std::make_unique<CLTileAccessScalarVariableBroadcastXTest>();
64 const auto test7 = std::make_unique<CLTileAccessScalarVariableBroadcastYTest>();
65 const auto test8 = std::make_unique<CLTileAccessVectorVariablesTest>();
66 const auto test9 = std::make_unique<CLTileAccessSubVectorVariablesTest>();
Gian Marco Iodice68e9c4d2023-06-15 17:40:28 +010067 const auto test10 = std::make_unique<CLConstantTileInternalValuesTest>();
68 const auto test11 = std::make_unique<CLConstantTileAccessScalarVariableBroadcastXTest>();
69 const auto test12 = std::make_unique<CLConstantTileAccessScalarVariableBroadcastYTest>();
70 const auto test13 = std::make_unique<CLConstantTileAccessVectorVariablesTest>();
71 const auto test14 = std::make_unique<CLConstantTileAccessSubVectorVariablesTest>();
Gunes Bayirab0b7502023-07-11 14:57:36 +010072#ifdef COMPUTE_KERNEL_WRITER_DEBUG_ENABLED
Viet-Hoa Do3389f532023-07-05 17:36:40 +010073 const auto test15 = std::make_unique<CLKernelWriterCommentTest>();
Gunes Bayirab0b7502023-07-11 14:57:36 +010074#endif /* COMPUTE_KERNEL_WRITER_DEBUG_ENABLED */
75 const auto test16 = std::make_unique<CLKernelWriterDeclareTileTest>();
Gian Marco Iodiceebfdb5a2023-07-07 11:25:57 +010076 const auto test17 = std::make_unique<CLTensorArgumentComponentNamesTest>();
77 const auto test18 = std::make_unique<CLTensorArgumentStorageNamesTest>();
78 const auto test19 = std::make_unique<CLTensorArgumentComponentValuesTest>();
79 const auto test20 = std::make_unique<CLTensorArgumentComponentsUsedPassByValueFalseTest>();
80 const auto test21 = std::make_unique<CLTensorArgumentComponentsUsedPassByValueTrueTest>();
81 const auto test22 = std::make_unique<CLTensorArgumentStoragesUsedTest>();
82 const auto test23 = std::make_unique<CLTensorArgumentComponentsUsedPassByValueTrueDynamicDimTrueTest>();
Viet-Hoa Do1df9f6e2023-07-24 17:57:12 +010083 const auto test24 = std::make_unique<CLKernelWriterDeclareTensorTest>();
Gunes Bayir47a396e2023-08-17 11:04:02 +010084 const auto test25 = std::make_unique<CLKernelWriterOpLoadStoreTest>();
Viet-Hoa Doe1c3b462023-07-31 17:13:34 +010085 const auto test26 = std::make_unique<CLKernelWriterAssignTest>();
86 const auto test27 = std::make_unique<CLKernelWriterCastTest>();
87 const auto test28 = std::make_unique<CLKernelWriterUnaryExpressionTest>();
Viet-Hoa Do34b6c3a2023-08-22 11:11:23 +010088 const auto test29 = std::make_unique<CLKernelWriterBinaryOpTest>();
89 const auto test30 = std::make_unique<CLKernelWriterTernaryOpTest>();
Gian Marco Iodice68e9c4d2023-06-15 17:40:28 +010090
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000091 tests.push_back(test3.get());
92 tests.push_back(test4.get());
93 tests.push_back(test5.get());
94 tests.push_back(test6.get());
95 tests.push_back(test7.get());
Gian Marco Iodice68e9c4d2023-06-15 17:40:28 +010096 tests.push_back(test8.get());
97 tests.push_back(test9.get());
98 tests.push_back(test10.get());
99 tests.push_back(test11.get());
100 tests.push_back(test12.get());
101 tests.push_back(test13.get());
102 tests.push_back(test14.get());
Gunes Bayirab0b7502023-07-11 14:57:36 +0100103#ifdef COMPUTE_KERNEL_WRITER_DEBUG_ENABLED
Viet-Hoa Do3389f532023-07-05 17:36:40 +0100104 tests.push_back(test15.get());
Gunes Bayirab0b7502023-07-11 14:57:36 +0100105#endif /* COMPUTE_KERNEL_WRITER_DEBUG_ENABLED */
106 tests.push_back(test16.get());
Gian Marco Iodiceebfdb5a2023-07-07 11:25:57 +0100107 tests.push_back(test17.get());
108 tests.push_back(test18.get());
109 tests.push_back(test19.get());
110 tests.push_back(test20.get());
111 tests.push_back(test21.get());
112 tests.push_back(test22.get());
113 tests.push_back(test23.get());
Viet-Hoa Do1df9f6e2023-07-24 17:57:12 +0100114 tests.push_back(test24.get());
Viet-Hoa Doe1c3b462023-07-31 17:13:34 +0100115 CKW_UNUSED(test25); // CLKernelWriterOpLoadStoreTest test needs further changes.
116 tests.push_back(test26.get());
117 tests.push_back(test27.get());
118 tests.push_back(test28.get());
Viet-Hoa Do34b6c3a2023-08-22 11:11:23 +0100119 tests.push_back(test29.get());
120 tests.push_back(test30.get());
Jakub Sujakdf5d9872023-05-22 17:38:56 +0100121#endif /* COMPUTE_KERNEL_WRITER_OPENCL_ENABLED */
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +0000122
123 bool all_test_passed = true;
124
125 for(auto &x : tests)
126 {
127 std::cout << x->name() << std::endl;
128 all_test_passed &= x->run();
129 }
130
131 if(all_test_passed == true)
132 {
133 std::cout << "All tests passed" << std::endl;
134 }
135 else
136 {
Viet-Hoa Do7644b912023-06-29 13:56:17 +0100137 throw std::runtime_error("One or more tests failed");
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +0000138 }
139
140 return 0;
141}