blob: 11dedfe89f8e63226cb8345bdf1cc61e39cf8825 [file] [log] [blame]
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +01001/*
Georgios Pinitas7f152512019-12-16 19:59:52 +00002 * Copyright (c) 2017-2020 ARM Limited.
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +01003 *
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#ifndef ARM_COMPUTE_TEST_FRAMEWORK
25#define ARM_COMPUTE_TEST_FRAMEWORK
26
Moritz Pflanzerd03b00a2017-07-17 13:50:12 +010027#include "DatasetModes.h"
Moritz Pflanzer2ac50402017-07-24 15:52:54 +010028#include "Exceptions.h"
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010029#include "Profiler.h"
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010030#include "TestCase.h"
31#include "TestCaseFactory.h"
32#include "TestResult.h"
33#include "Utils.h"
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010034#include "instruments/Instruments.h"
Moritz Pflanzer80fffae2017-07-05 11:02:37 +010035#include "printers/Printer.h"
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010036
37#include <algorithm>
38#include <chrono>
39#include <map>
40#include <memory>
41#include <numeric>
42#include <ostream>
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010043#include <set>
44#include <sstream>
45#include <string>
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010046#include <vector>
47
48namespace arm_compute
49{
50namespace test
51{
52namespace framework
53{
Matthew Bentham470bc1e2020-03-09 10:55:40 +000054class TestFilter;
55
Georgios Pinitas7f152512019-12-16 19:59:52 +000056/** Framework configuration structure */
57struct FrameworkConfig
58{
59 std::vector<framework::InstrumentsDescription> instruments{}; /**< Instrument types that will be used for benchmarking. */
60 std::string name_filter{}; /**< Regular expression to filter tests by name. Only matching tests will be executed. */
61 std::string id_filter{}; /**< String to match selected test ids. Only matching tests will be executed. */
62 DatasetMode mode{ DatasetMode::ALL }; /**< Dataset mode. */
63 int num_iterations{ 1 }; /**< Number of iterations per test. */
64 float cooldown_sec{ -1.f }; /**< Delay between tests in seconds. */
65 LogLevel log_level{ LogLevel::NONE }; /**< Verbosity of the output. */
66};
67
Moritz Pflanzer542002c2017-07-26 16:03:58 +010068/** Information about a test case.
69 *
70 * A test can be identified either via its id or via its name. Additionally
71 * each test is tagged with the data set mode in which it will be used and
72 * its status.
73 *
74 * @note The mapping between test id and test name is not guaranteed to be
75 * stable. It is subject to change as new test are added.
76 */
77struct TestInfo
78{
Alex Gildayc357c472018-03-21 13:54:09 +000079 int id; /**< Test ID */
80 std::string name; /**< Test name */
81 DatasetMode mode; /**< Test data set mode */
82 TestCaseFactory::Status status; /**< Test status */
Moritz Pflanzer542002c2017-07-26 16:03:58 +010083};
84
85inline bool operator<(const TestInfo &lhs, const TestInfo &rhs)
86{
87 return lhs.id < rhs.id;
88}
89
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010090/** Main framework class.
91 *
92 * Keeps track of the global state, owns all test cases and collects results.
93 */
94class Framework final
95{
96public:
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010097 /** Access to the singleton.
98 *
99 * @return Unique instance of the framework class.
100 */
101 static Framework &get();
102
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100103 /** Supported instrument types for benchmarking.
104 *
105 * @return Set of all available instrument types.
106 */
Giorgio Arenace58a9f2017-10-31 17:59:17 +0000107 std::set<InstrumentsDescription> available_instruments() const;
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100108
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100109 /** Init the framework.
110 *
Moritz Pflanzerec2de0f2017-07-27 14:43:46 +0100111 * @see TestFilter::TestFilter for the format of the string to filter ids.
112 *
Georgios Pinitas7f152512019-12-16 19:59:52 +0000113 * @param[in] config Framework configuration meta-data.
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100114 */
Georgios Pinitas7f152512019-12-16 19:59:52 +0000115 void init(const FrameworkConfig &config);
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100116
117 /** Add a new test suite.
118 *
119 * @warning Cannot be used at execution time. It can only be used for
120 * registering test cases.
121 *
122 * @param[in] name Name of the added test suite.
123 *
124 * @return Name of the current test suite.
125 */
126 void push_suite(std::string name);
127
128 /** Remove innermost test suite.
129 *
130 * @warning Cannot be used at execution time. It can only be used for
131 * registering test cases.
132 */
133 void pop_suite();
134
135 /** Add a test case to the framework.
136 *
137 * @param[in] test_name Name of the new test case.
Moritz Pflanzerd03b00a2017-07-17 13:50:12 +0100138 * @param[in] mode Mode in which to include the test.
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100139 * @param[in] status Status of the test case.
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100140 */
141 template <typename T>
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100142 void add_test_case(std::string test_name, DatasetMode mode, TestCaseFactory::Status status);
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100143
144 /** Add a data test case to the framework.
145 *
146 * @param[in] test_name Name of the new test case.
Moritz Pflanzerd03b00a2017-07-17 13:50:12 +0100147 * @param[in] mode Mode in which to include the test.
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100148 * @param[in] status Status of the test case.
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100149 * @param[in] description Description of @p data.
150 * @param[in] data Data that will be used as input to the test.
151 */
152 template <typename T, typename D>
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100153 void add_data_test_case(std::string test_name, DatasetMode mode, TestCaseFactory::Status status, std::string description, D &&data);
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100154
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100155 /** Add info string for the next expectation/assertion.
156 *
157 * @param[in] info Info string.
158 */
159 void add_test_info(std::string info);
160
161 /** Clear the collected test info. */
162 void clear_test_info();
163
164 /** Check if any info has been registered.
165 *
166 * @return True if there is test info.
167 */
168 bool has_test_info() const;
169
170 /** Print test info.
171 *
172 * @param[out] os Output stream.
173 */
174 void print_test_info(std::ostream &os) const;
175
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100176 /** Tell the framework that execution of a test starts.
177 *
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100178 * @param[in] info Test info.
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100179 */
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100180 void log_test_start(const TestInfo &info);
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100181
182 /** Tell the framework that a test case is skipped.
183 *
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100184 * @param[in] info Test info.
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100185 */
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100186 void log_test_skipped(const TestInfo &info);
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100187
188 /** Tell the framework that a test case finished.
189 *
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100190 * @param[in] info Test info.
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100191 */
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100192 void log_test_end(const TestInfo &info);
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100193
194 /** Tell the framework that the currently running test case failed a non-fatal expectation.
195 *
Moritz Pflanzer24a82462017-08-04 11:34:44 +0100196 * @param[in] error Description of the error.
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100197 */
Moritz Pflanzer24a82462017-08-04 11:34:44 +0100198 void log_failed_expectation(const TestError &error);
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100199
steniu01172c58d2017-08-31 13:49:08 +0100200 /** Print the debug information that has already been logged
201 *
202 * @param[in] info Description of the log info.
203 */
204 void log_info(const std::string &info);
205
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100206 /** Number of iterations per test case.
207 *
208 * @return Number of iterations per test case.
209 */
210 int num_iterations() const;
211
212 /** Set number of iterations per test case.
213 *
214 * @param[in] num_iterations Number of iterations per test case.
215 */
216 void set_num_iterations(int num_iterations);
217
218 /** Should errors be caught or thrown by the framework.
219 *
220 * @return True if errors are thrown.
221 */
222 bool throw_errors() const;
223
224 /** Set whether errors are caught or thrown by the framework.
225 *
226 * @param[in] throw_errors True if errors should be thrown.
227 */
228 void set_throw_errors(bool throw_errors);
229
Moritz Pflanzerfa811652017-07-26 17:00:37 +0100230 /** Indicates if test execution is stopped after the first failed test.
231 *
232 * @return True if the execution is going to be aborted after the first failed test.
233 */
234 bool stop_on_error() const;
235
236 /** Set whether to abort execution after the first failed test.
237 *
238 * @param[in] stop_on_error True if execution is going to be aborted after first failed test.
239 */
240 void set_stop_on_error(bool stop_on_error);
241
Anthony Barbierf6705ec2017-09-28 12:01:10 +0100242 /** Indicates if a test should be marked as failed when its assets are missing.
243 *
244 * @return True if a test should be marked as failed when its assets are missing.
245 */
246 bool error_on_missing_assets() const;
247
248 /** Set whether a test should be considered as failed if its assets cannot be found.
249 *
250 * @param[in] error_on_missing_assets True if a test should be marked as failed when its assets are missing.
251 */
252 void set_error_on_missing_assets(bool error_on_missing_assets);
253
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100254 /** Run all enabled test cases.
255 *
256 * @return True if all test cases executed successful.
257 */
258 bool run();
259
260 /** Set the result for an executed test case.
261 *
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100262 * @param[in] info Test info.
263 * @param[in] result Execution result.
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100264 */
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100265 void set_test_result(TestInfo info, TestResult result);
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100266
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100267 /** Use the specified printer to output test results from the last run.
268 *
269 * This method can be used if the test results need to be obtained using a
270 * different printer than the one managed by the framework.
271 *
272 * @param[in] printer Printer used to output results.
273 */
274 void print_test_results(Printer &printer) const;
275
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100276 /** Factory method to obtain a configured profiler.
277 *
278 * The profiler enables all instruments that have been passed to the @ref
279 * init method.
280 *
281 * @return Configured profiler to collect benchmark results.
282 */
283 Profiler get_profiler() const;
284
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100285 /** Set the printer used for the output of test results.
286 *
287 * @param[in] printer Pointer to a printer.
288 */
Giorgio Arena2d099932017-10-25 15:47:08 +0100289 void add_printer(Printer *printer);
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100290
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100291 /** List of @ref TestInfo's.
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100292 *
293 * @return Vector with all test ids.
294 */
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100295 std::vector<TestInfo> test_infos() const;
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100296
steniu01172c58d2017-08-31 13:49:08 +0100297 /** Get the current logging level
298 *
299 * @return The current logging level.
300 */
301 LogLevel log_level() const;
Georgios Pinitas12833d02019-07-25 13:31:10 +0100302 /** Sets instruments info
303 *
304 * @note TODO(COMPMID-2638) : Remove once instruments are transferred outside the framework.
305 *
306 * @param[in] instr_info Instruments info to set
307 */
308 void set_instruments_info(InstrumentsInfo instr_info);
steniu01172c58d2017-08-31 13:49:08 +0100309
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100310private:
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100311 Framework();
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100312 ~Framework() = default;
313
314 Framework(const Framework &) = delete;
315 Framework &operator=(const Framework &) = delete;
316
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100317 void run_test(const TestInfo &info, TestCaseFactory &test_factory);
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100318 std::map<TestResult::Status, int> count_test_results() const;
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100319
320 /** Returns the current test suite name.
321 *
322 * @warning Cannot be used at execution time to get the test suite of the
323 * currently executed test case. It can only be used for registering test
324 * cases.
325 *
326 * @return Name of the current test suite.
327 */
328 std::string current_suite_name() const;
329
Giorgio Arena2d099932017-10-25 15:47:08 +0100330 /* Perform func on all printers */
331 template <typename F>
332 void func_on_all_printers(F &&func);
333
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100334 std::vector<std::string> _test_suite_name{};
335 std::vector<std::unique_ptr<TestCaseFactory>> _test_factories{};
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100336 std::map<TestInfo, TestResult> _test_results{};
Giorgio Arena2d099932017-10-25 15:47:08 +0100337 int _num_iterations{ 1 };
Georgios Pinitas7f152512019-12-16 19:59:52 +0000338 float _cooldown_sec{ -1.f };
Giorgio Arena2d099932017-10-25 15:47:08 +0100339 bool _throw_errors{ false };
340 bool _stop_on_error{ false };
341 bool _error_on_missing_assets{ false };
342 std::vector<Printer *> _printers{};
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100343
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100344 using create_function = std::unique_ptr<Instrument>();
Giorgio Arenace58a9f2017-10-31 17:59:17 +0000345 std::map<InstrumentsDescription, create_function *> _available_instruments{};
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100346
Giorgio Arenace58a9f2017-10-31 17:59:17 +0000347 std::set<framework::InstrumentsDescription> _instruments{ std::pair<InstrumentType, ScaleFactor>(InstrumentType::NONE, ScaleFactor::NONE) };
Matthew Bentham470bc1e2020-03-09 10:55:40 +0000348 std::unique_ptr<TestFilter> _test_filter;
Giorgio Arenace58a9f2017-10-31 17:59:17 +0000349 LogLevel _log_level{ LogLevel::ALL };
350 const TestInfo *_current_test_info{ nullptr };
351 TestResult *_current_test_result{ nullptr };
352 std::vector<std::string> _test_info{};
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100353};
354
355template <typename T>
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100356inline void Framework::add_test_case(std::string test_name, DatasetMode mode, TestCaseFactory::Status status)
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100357{
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100358 _test_factories.emplace_back(support::cpp14::make_unique<SimpleTestCaseFactory<T>>(current_suite_name(), std::move(test_name), mode, status));
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100359}
360
361template <typename T, typename D>
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100362inline void Framework::add_data_test_case(std::string test_name, DatasetMode mode, TestCaseFactory::Status status, std::string description, D &&data)
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100363{
364 // WORKAROUND for GCC 4.9
365 // The function should get *it which is tuple but that seems to trigger a
366 // bug in the compiler.
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100367 auto tmp = std::unique_ptr<DataTestCaseFactory<T, decltype(*std::declval<D>())>>(new DataTestCaseFactory<T, decltype(*std::declval<D>())>(current_suite_name(), std::move(test_name), mode, status,
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100368 std::move(description), *data));
369 _test_factories.emplace_back(std::move(tmp));
370}
371} // namespace framework
372} // namespace test
373} // namespace arm_compute
374#endif /* ARM_COMPUTE_TEST_FRAMEWORK */