blob: c8d0f6b45d1334c292c66905e56a379145168f3f [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"
Gunes Bayir806b8e82023-08-23 23:28:31 +010030#include "validation/tests/CLKernelWriterDeclareConstantTileTest.h"
Viet-Hoa Doe1c3b462023-07-31 17:13:34 +010031#include "validation/tests/CLKernelWriterDeclareTensorTest.h"
Gunes Bayir47a396e2023-08-17 11:04:02 +010032#include "validation/tests/CLKernelWriterDeclareTileTest.h"
Viet-Hoa Do2d0c2f52023-08-24 11:48:19 +010033#include "validation/tests/CLKernelWriterForTest.h"
34#include "validation/tests/CLKernelWriterIfTest.h"
Viet-Hoa Doe1c3b462023-07-31 17:13:34 +010035#include "validation/tests/CLKernelWriterOpLoadStoreTest.h"
Viet-Hoa Do2d0c2f52023-08-24 11:48:19 +010036#include "validation/tests/CLKernelWriterReturnTest.h"
Viet-Hoa Do34b6c3a2023-08-22 11:11:23 +010037#include "validation/tests/CLKernelWriterTernaryOpTest.h"
Viet-Hoa Doe1c3b462023-07-31 17:13:34 +010038#include "validation/tests/CLKernelWriterUnaryExpressionTest.h"
Gunes Bayir47a396e2023-08-17 11:04:02 +010039#include "validation/tests/CLTensorArgumentTest.h"
40#include "validation/tests/CLTileTest.hpp"
41#include "validation/tests/TensorBitMaskTest.h"
42#include "validation/tests/UtilsTest.h"
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000043
44#include <memory>
45#include <vector>
46
47using namespace ckw;
48
49/** Main test program
50 */
51int32_t main()
52{
Nikolaj Jensenacea4072023-07-03 09:44:42 +010053 std::vector<ITest *> tests;
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000054
55 // Add your test here
56 const auto test0 = std::make_unique<UtilsTest>();
57 const auto test1 = std::make_unique<TensorBitMaskTrueTest>();
58 const auto test2 = std::make_unique<TensorBitMaskFalseTest>();
Jakub Sujakdf5d9872023-05-22 17:38:56 +010059 tests.push_back(test0.get());
60 tests.push_back(test1.get());
61 tests.push_back(test2.get());
62
63#ifdef COMPUTE_KERNEL_WRITER_OPENCL_ENABLED
Nikolaj Jensenacea4072023-07-03 09:44:42 +010064 const auto test3 = std::make_unique<CLTileInternalVariableNamesTest>();
65 const auto test4 = std::make_unique<CLTileInternalNumVariablesTest>();
66 const auto test5 = std::make_unique<CLTileAccessScalarVariableTest>();
67 const auto test6 = std::make_unique<CLTileAccessScalarVariableBroadcastXTest>();
68 const auto test7 = std::make_unique<CLTileAccessScalarVariableBroadcastYTest>();
69 const auto test8 = std::make_unique<CLTileAccessVectorVariablesTest>();
70 const auto test9 = std::make_unique<CLTileAccessSubVectorVariablesTest>();
Gian Marco Iodice68e9c4d2023-06-15 17:40:28 +010071 const auto test10 = std::make_unique<CLConstantTileInternalValuesTest>();
72 const auto test11 = std::make_unique<CLConstantTileAccessScalarVariableBroadcastXTest>();
73 const auto test12 = std::make_unique<CLConstantTileAccessScalarVariableBroadcastYTest>();
74 const auto test13 = std::make_unique<CLConstantTileAccessVectorVariablesTest>();
75 const auto test14 = std::make_unique<CLConstantTileAccessSubVectorVariablesTest>();
Gunes Bayirab0b7502023-07-11 14:57:36 +010076#ifdef COMPUTE_KERNEL_WRITER_DEBUG_ENABLED
Viet-Hoa Do3389f532023-07-05 17:36:40 +010077 const auto test15 = std::make_unique<CLKernelWriterCommentTest>();
Gunes Bayirab0b7502023-07-11 14:57:36 +010078#endif /* COMPUTE_KERNEL_WRITER_DEBUG_ENABLED */
79 const auto test16 = std::make_unique<CLKernelWriterDeclareTileTest>();
Gian Marco Iodiceebfdb5a2023-07-07 11:25:57 +010080 const auto test17 = std::make_unique<CLTensorArgumentComponentNamesTest>();
81 const auto test18 = std::make_unique<CLTensorArgumentStorageNamesTest>();
82 const auto test19 = std::make_unique<CLTensorArgumentComponentValuesTest>();
83 const auto test20 = std::make_unique<CLTensorArgumentComponentsUsedPassByValueFalseTest>();
84 const auto test21 = std::make_unique<CLTensorArgumentComponentsUsedPassByValueTrueTest>();
85 const auto test22 = std::make_unique<CLTensorArgumentStoragesUsedTest>();
86 const auto test23 = std::make_unique<CLTensorArgumentComponentsUsedPassByValueTrueDynamicDimTrueTest>();
Viet-Hoa Do1df9f6e2023-07-24 17:57:12 +010087 const auto test24 = std::make_unique<CLKernelWriterDeclareTensorTest>();
Gunes Bayir47a396e2023-08-17 11:04:02 +010088 const auto test25 = std::make_unique<CLKernelWriterOpLoadStoreTest>();
Viet-Hoa Doe1c3b462023-07-31 17:13:34 +010089 const auto test26 = std::make_unique<CLKernelWriterAssignTest>();
90 const auto test27 = std::make_unique<CLKernelWriterCastTest>();
91 const auto test28 = std::make_unique<CLKernelWriterUnaryExpressionTest>();
Viet-Hoa Do34b6c3a2023-08-22 11:11:23 +010092 const auto test29 = std::make_unique<CLKernelWriterBinaryOpTest>();
93 const auto test30 = std::make_unique<CLKernelWriterTernaryOpTest>();
Gunes Bayir806b8e82023-08-23 23:28:31 +010094 const auto test31 = std::make_unique<CLKernelWriterDeclareConstantTileTest>();
Viet-Hoa Do2d0c2f52023-08-24 11:48:19 +010095 const auto test32 = std::make_unique<CLKernelWriterIfTest>();
96 const auto test33 = std::make_unique<CLKernelWriterForTest>();
97 const auto test34 = std::make_unique<CLKernelWriterReturnTest>();
Gian Marco Iodice68e9c4d2023-06-15 17:40:28 +010098
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000099 tests.push_back(test3.get());
100 tests.push_back(test4.get());
101 tests.push_back(test5.get());
102 tests.push_back(test6.get());
103 tests.push_back(test7.get());
Gian Marco Iodice68e9c4d2023-06-15 17:40:28 +0100104 tests.push_back(test8.get());
105 tests.push_back(test9.get());
106 tests.push_back(test10.get());
107 tests.push_back(test11.get());
108 tests.push_back(test12.get());
109 tests.push_back(test13.get());
110 tests.push_back(test14.get());
Gunes Bayirab0b7502023-07-11 14:57:36 +0100111#ifdef COMPUTE_KERNEL_WRITER_DEBUG_ENABLED
Viet-Hoa Do3389f532023-07-05 17:36:40 +0100112 tests.push_back(test15.get());
Gunes Bayirab0b7502023-07-11 14:57:36 +0100113#endif /* COMPUTE_KERNEL_WRITER_DEBUG_ENABLED */
114 tests.push_back(test16.get());
Gian Marco Iodiceebfdb5a2023-07-07 11:25:57 +0100115 tests.push_back(test17.get());
116 tests.push_back(test18.get());
117 tests.push_back(test19.get());
118 tests.push_back(test20.get());
119 tests.push_back(test21.get());
120 tests.push_back(test22.get());
121 tests.push_back(test23.get());
Viet-Hoa Do1df9f6e2023-07-24 17:57:12 +0100122 tests.push_back(test24.get());
Gunes Bayir362e1e02023-08-23 23:56:54 +0100123 tests.push_back(test25.get());
Viet-Hoa Doe1c3b462023-07-31 17:13:34 +0100124 tests.push_back(test26.get());
125 tests.push_back(test27.get());
126 tests.push_back(test28.get());
Viet-Hoa Do34b6c3a2023-08-22 11:11:23 +0100127 tests.push_back(test29.get());
128 tests.push_back(test30.get());
Gunes Bayir806b8e82023-08-23 23:28:31 +0100129 tests.push_back(test31.get());
Viet-Hoa Do2d0c2f52023-08-24 11:48:19 +0100130 tests.push_back(test32.get());
131 tests.push_back(test33.get());
132 tests.push_back(test34.get());
Jakub Sujakdf5d9872023-05-22 17:38:56 +0100133#endif /* COMPUTE_KERNEL_WRITER_OPENCL_ENABLED */
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +0000134
135 bool all_test_passed = true;
136
137 for(auto &x : tests)
138 {
139 std::cout << x->name() << std::endl;
140 all_test_passed &= x->run();
141 }
142
143 if(all_test_passed == true)
144 {
145 std::cout << "All tests passed" << std::endl;
146 }
147 else
148 {
Viet-Hoa Do7644b912023-06-29 13:56:17 +0100149 throw std::runtime_error("One or more tests failed");
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +0000150 }
151
152 return 0;
153}