blob: a3dee07862e3067b8af05be7202eb77e1114130e [file] [log] [blame]
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +01001/*
Ramy Elgammala8db6122023-05-08 03:33:43 +01002 * Copyright (c) 2017-2021, 2023 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#include "Framework.h"
25
Pablo Tello4e0ac6f2018-10-01 14:31:11 +010026#include "arm_compute/runtime/Scheduler.h"
Pablo Tellodb8485a2019-09-24 11:03:47 +010027#include "tests/framework/ParametersLibrary.h"
Matthew Bentham470bc1e2020-03-09 10:55:40 +000028#include "tests/framework/TestFilter.h"
Pablo Tellodb8485a2019-09-24 11:03:47 +010029
Gian Marco Iodiced30ed112018-05-16 12:01:14 +010030#ifdef ARM_COMPUTE_CL
Pablo Tellodb8485a2019-09-24 11:03:47 +010031#include "arm_compute/runtime/CL/CLRuntimeContext.h"
Gian Marco Iodiced30ed112018-05-16 12:01:14 +010032#include "arm_compute/runtime/CL/CLScheduler.h"
Pablo Tellodb8485a2019-09-24 11:03:47 +010033
Gian Marco Iodiced30ed112018-05-16 12:01:14 +010034#endif /* ARM_COMPUTE_CL */
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010035
36#include <chrono>
37#include <iostream>
Georgios Pinitas40f51a62020-11-21 03:04:18 +000038#include <memory>
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010039#include <sstream>
40#include <type_traits>
41
42namespace arm_compute
43{
44namespace test
45{
Pablo Tellodb8485a2019-09-24 11:03:47 +010046std::unique_ptr<ParametersLibrary> parameters;
47
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010048namespace framework
49{
Georgios Pinitas12833d02019-07-25 13:31:10 +010050std::unique_ptr<InstrumentsInfo> instruments_info;
51
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010052Framework::Framework()
Matthew Bentham470bc1e2020-03-09 10:55:40 +000053 : _test_filter(nullptr)
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010054{
Anthony Barbier72f4ae52018-11-07 17:33:54 +000055 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::WALL_CLOCK_TIMESTAMPS, ScaleFactor::NONE), Instrument::make_instrument<WallClockTimestamps, ScaleFactor::NONE>);
56 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::WALL_CLOCK_TIMESTAMPS, ScaleFactor::TIME_MS),
57 Instrument::make_instrument<WallClockTimestamps, ScaleFactor::TIME_MS>);
58 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::WALL_CLOCK_TIMESTAMPS, ScaleFactor::TIME_S),
59 Instrument::make_instrument<WallClockTimestamps, ScaleFactor::TIME_S>);
Giorgio Arenace58a9f2017-10-31 17:59:17 +000060 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::WALL_CLOCK_TIMER, ScaleFactor::NONE), Instrument::make_instrument<WallClockTimer, ScaleFactor::NONE>);
61 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::WALL_CLOCK_TIMER, ScaleFactor::TIME_MS), Instrument::make_instrument<WallClockTimer, ScaleFactor::TIME_MS>);
62 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::WALL_CLOCK_TIMER, ScaleFactor::TIME_S), Instrument::make_instrument<WallClockTimer, ScaleFactor::TIME_S>);
Anthony Barbier72f4ae52018-11-07 17:33:54 +000063 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::SCHEDULER_TIMESTAMPS, ScaleFactor::NONE), Instrument::make_instrument<SchedulerTimestamps, ScaleFactor::NONE>);
64 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::SCHEDULER_TIMESTAMPS, ScaleFactor::TIME_MS),
65 Instrument::make_instrument<SchedulerTimestamps, ScaleFactor::TIME_MS>);
66 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::SCHEDULER_TIMESTAMPS, ScaleFactor::TIME_S),
67 Instrument::make_instrument<SchedulerTimestamps, ScaleFactor::TIME_S>);
Anthony Barbiere8a49832018-01-18 10:04:05 +000068 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::SCHEDULER_TIMER, ScaleFactor::NONE), Instrument::make_instrument<SchedulerTimer, ScaleFactor::NONE>);
69 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::SCHEDULER_TIMER, ScaleFactor::TIME_MS), Instrument::make_instrument<SchedulerTimer, ScaleFactor::TIME_MS>);
70 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::SCHEDULER_TIMER, ScaleFactor::TIME_S), Instrument::make_instrument<SchedulerTimer, ScaleFactor::TIME_S>);
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010071#ifdef PMU_ENABLED
Giorgio Arenace58a9f2017-10-31 17:59:17 +000072 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::PMU, ScaleFactor::NONE), Instrument::make_instrument<PMUCounter, ScaleFactor::NONE>);
73 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::PMU, ScaleFactor::SCALE_1K), Instrument::make_instrument<PMUCounter, ScaleFactor::SCALE_1K>);
74 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::PMU, ScaleFactor::SCALE_1M), Instrument::make_instrument<PMUCounter, ScaleFactor::SCALE_1M>);
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010075#endif /* PMU_ENABLED */
Moritz Pflanzer45634b42017-08-30 12:48:18 +010076#ifdef MALI_ENABLED
Giorgio Arenace58a9f2017-10-31 17:59:17 +000077 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::MALI, ScaleFactor::NONE), Instrument::make_instrument<MaliCounter, ScaleFactor::NONE>);
78 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::MALI, ScaleFactor::SCALE_1K), Instrument::make_instrument<MaliCounter, ScaleFactor::SCALE_1K>);
79 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::MALI, ScaleFactor::SCALE_1M), Instrument::make_instrument<MaliCounter, ScaleFactor::SCALE_1M>);
Moritz Pflanzer45634b42017-08-30 12:48:18 +010080#endif /* MALI_ENABLED */
Anthony Barbiere8895f82017-11-23 16:58:52 +000081#ifdef ARM_COMPUTE_CL
Anthony Barbier72f4ae52018-11-07 17:33:54 +000082 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::OPENCL_TIMESTAMPS, ScaleFactor::NONE), Instrument::make_instrument<OpenCLTimestamps, ScaleFactor::NONE>);
83 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::OPENCL_TIMESTAMPS, ScaleFactor::TIME_US), Instrument::make_instrument<OpenCLTimestamps, ScaleFactor::TIME_US>);
84 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::OPENCL_TIMESTAMPS, ScaleFactor::TIME_MS), Instrument::make_instrument<OpenCLTimestamps, ScaleFactor::TIME_MS>);
85 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::OPENCL_TIMESTAMPS, ScaleFactor::TIME_S), Instrument::make_instrument<OpenCLTimestamps, ScaleFactor::TIME_S>);
Giorgio Arenace58a9f2017-10-31 17:59:17 +000086 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::OPENCL_TIMER, ScaleFactor::NONE), Instrument::make_instrument<OpenCLTimer, ScaleFactor::NONE>);
87 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::OPENCL_TIMER, ScaleFactor::TIME_US), Instrument::make_instrument<OpenCLTimer, ScaleFactor::TIME_US>);
88 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::OPENCL_TIMER, ScaleFactor::TIME_MS), Instrument::make_instrument<OpenCLTimer, ScaleFactor::TIME_MS>);
89 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::OPENCL_TIMER, ScaleFactor::TIME_S), Instrument::make_instrument<OpenCLTimer, ScaleFactor::TIME_S>);
Anthony Barbier35aa6a32018-04-23 16:12:12 +010090 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::OPENCL_MEMORY_USAGE, ScaleFactor::NONE), Instrument::make_instrument<OpenCLMemoryUsage, ScaleFactor::NONE>);
91 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::OPENCL_MEMORY_USAGE, ScaleFactor::SCALE_1K),
92 Instrument::make_instrument<OpenCLMemoryUsage, ScaleFactor::SCALE_1K>);
93 _available_instruments.emplace(std::pair<InstrumentType, ScaleFactor>(InstrumentType::OPENCL_MEMORY_USAGE, ScaleFactor::SCALE_1M),
94 Instrument::make_instrument<OpenCLMemoryUsage, ScaleFactor::SCALE_1M>);
Anthony Barbiere8895f82017-11-23 16:58:52 +000095#endif /* ARM_COMPUTE_CL */
Georgios Pinitas12833d02019-07-25 13:31:10 +010096
Georgios Pinitas40f51a62020-11-21 03:04:18 +000097 instruments_info = std::make_unique<InstrumentsInfo>();
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010098}
99
Giorgio Arenace58a9f2017-10-31 17:59:17 +0000100std::set<InstrumentsDescription> Framework::available_instruments() const
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100101{
Giorgio Arenace58a9f2017-10-31 17:59:17 +0000102 std::set<InstrumentsDescription> types;
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100103
104 for(const auto &instrument : _available_instruments)
105 {
106 types.emplace(instrument.first);
107 }
108
109 return types;
110}
111
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100112std::map<TestResult::Status, int> Framework::count_test_results() const
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100113{
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100114 std::map<TestResult::Status, int> counts;
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100115
116 for(const auto &test : _test_results)
117 {
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100118 ++counts[test.second.status];
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100119 }
120
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100121 return counts;
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100122}
123
124Framework &Framework::get()
125{
126 static Framework instance;
127 return instance;
128}
129
Georgios Pinitas7f152512019-12-16 19:59:52 +0000130void Framework::init(const FrameworkConfig &config)
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100131{
Matthew Bentham470bc1e2020-03-09 10:55:40 +0000132 _test_filter.reset(new TestFilter(config.mode, config.name_filter, config.id_filter));
Georgios Pinitas7f152512019-12-16 19:59:52 +0000133 _num_iterations = config.num_iterations;
134 _log_level = config.log_level;
135 _cooldown_sec = config.cooldown_sec;
Giorgio Arena68e29da2021-02-08 16:31:10 +0000136 _configure_only = config.configure_only;
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100137
Georgios Pinitas7f152512019-12-16 19:59:52 +0000138 _instruments = std::set<framework::InstrumentsDescription>(std::begin(config.instruments), std::end(config.instruments));
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100139}
140
141std::string Framework::current_suite_name() const
142{
143 return join(_test_suite_name.cbegin(), _test_suite_name.cend(), "/");
144}
145
146void Framework::push_suite(std::string name)
147{
148 _test_suite_name.emplace_back(std::move(name));
149}
150
151void Framework::pop_suite()
152{
153 _test_suite_name.pop_back();
154}
155
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100156void Framework::add_test_info(std::string info)
157{
158 _test_info.emplace_back(std::move(info));
159}
160
161void Framework::clear_test_info()
162{
163 _test_info.clear();
164}
165
166bool Framework::has_test_info() const
167{
168 return !_test_info.empty();
169}
170
171void Framework::print_test_info(std::ostream &os) const
172{
Moritz Pflanzer8df3faf2017-07-28 13:57:53 +0100173 if(!_test_info.empty())
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100174 {
Moritz Pflanzer8df3faf2017-07-28 13:57:53 +0100175 os << "CONTEXT:\n";
176
177 for(const auto &str : _test_info)
178 {
179 os << " " << str << "\n";
180 }
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100181 }
182}
183
Giorgio Arena2d099932017-10-25 15:47:08 +0100184template <typename F>
185void Framework::func_on_all_printers(F &&func)
186{
187 std::for_each(std::begin(_printers), std::end(_printers), func);
188}
189
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100190void Framework::log_test_start(const TestInfo &info)
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100191{
Giorgio Arena2d099932017-10-25 15:47:08 +0100192 if(_log_level >= LogLevel::TESTS)
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100193 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100194 func_on_all_printers([&](Printer * p)
195 {
196 p->print_test_header(info);
197 });
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100198 }
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100199}
200
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100201void Framework::log_test_skipped(const TestInfo &info)
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100202{
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100203 static_cast<void>(info);
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100204}
205
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100206void Framework::log_test_end(const TestInfo &info)
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100207{
Giorgio Arena2d099932017-10-25 15:47:08 +0100208 if(_log_level >= LogLevel::MEASUREMENTS)
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100209 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100210 func_on_all_printers([&](Printer * p)
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100211 {
Freddie Liardet59fd7a72021-06-17 13:30:11 +0100212 p->print_profiler_header(_test_results.at(info).header_data);
Giorgio Arena2d099932017-10-25 15:47:08 +0100213 p->print_measurements(_test_results.at(info).measurements);
214 });
215 }
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100216
Giorgio Arena2d099932017-10-25 15:47:08 +0100217 if(_log_level >= LogLevel::TESTS)
218 {
219 func_on_all_printers([](Printer * p)
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100220 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100221 p->print_test_footer();
222 });
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100223 }
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100224}
225
Moritz Pflanzer24a82462017-08-04 11:34:44 +0100226void Framework::log_failed_expectation(const TestError &error)
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100227{
Moritz Pflanzer0ce08442017-09-16 11:11:27 +0100228 ARM_COMPUTE_ERROR_ON(_current_test_info == nullptr);
229 ARM_COMPUTE_ERROR_ON(_current_test_result == nullptr);
230
231 const bool is_expected_failure = _current_test_info->status == TestCaseFactory::Status::EXPECTED_FAILURE;
232
Giorgio Arena2d099932017-10-25 15:47:08 +0100233 if(_log_level >= error.level())
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100234 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100235 func_on_all_printers([&](Printer * p)
236 {
237 p->print_error(error, is_expected_failure);
238 });
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100239 }
Moritz Pflanzere1103a82017-07-18 12:20:45 +0100240
Moritz Pflanzer0ce08442017-09-16 11:11:27 +0100241 _current_test_result->status = TestResult::Status::FAILED;
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100242}
243
steniu01172c58d2017-08-31 13:49:08 +0100244void Framework::log_info(const std::string &info)
245{
Giorgio Arena2d099932017-10-25 15:47:08 +0100246 if(_log_level >= LogLevel::DEBUG)
steniu01172c58d2017-08-31 13:49:08 +0100247 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100248 func_on_all_printers([&](Printer * p)
249 {
250 p->print_info(info);
251 });
steniu01172c58d2017-08-31 13:49:08 +0100252 }
253}
254
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100255int Framework::num_iterations() const
256{
257 return _num_iterations;
258}
259
260void Framework::set_num_iterations(int num_iterations)
261{
262 _num_iterations = num_iterations;
263}
264
265void Framework::set_throw_errors(bool throw_errors)
266{
267 _throw_errors = throw_errors;
268}
269
270bool Framework::throw_errors() const
271{
272 return _throw_errors;
273}
274
Moritz Pflanzerfa811652017-07-26 17:00:37 +0100275void Framework::set_stop_on_error(bool stop_on_error)
276{
277 _stop_on_error = stop_on_error;
278}
279
280bool Framework::stop_on_error() const
281{
282 return _stop_on_error;
283}
284
Anthony Barbierf6705ec2017-09-28 12:01:10 +0100285void Framework::set_error_on_missing_assets(bool error_on_missing_assets)
286{
287 _error_on_missing_assets = error_on_missing_assets;
288}
289
290bool Framework::error_on_missing_assets() const
291{
292 return _error_on_missing_assets;
293}
294
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100295void Framework::run_test(const TestInfo &info, TestCaseFactory &test_factory)
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100296{
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100297 if(test_factory.status() == TestCaseFactory::Status::DISABLED)
298 {
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100299 log_test_skipped(info);
300 set_test_result(info, TestResult(TestResult::Status::DISABLED));
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100301 return;
302 }
303
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100304 log_test_start(info);
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100305
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100306 Profiler profiler = get_profiler();
Moritz Pflanzere33eb642017-07-31 14:48:45 +0100307 TestResult result(TestResult::Status::NOT_RUN);
Moritz Pflanzere1103a82017-07-18 12:20:45 +0100308
Moritz Pflanzer0ce08442017-09-16 11:11:27 +0100309 _current_test_info = &info;
Moritz Pflanzere1103a82017-07-18 12:20:45 +0100310 _current_test_result = &result;
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100311
Giorgio Arena2d099932017-10-25 15:47:08 +0100312 if(_log_level >= LogLevel::ERRORS)
Moritz Pflanzer24a82462017-08-04 11:34:44 +0100313 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100314 func_on_all_printers([](Printer * p)
315 {
316 p->print_errors_header();
317 });
Moritz Pflanzer24a82462017-08-04 11:34:44 +0100318 }
319
Moritz Pflanzer0ce08442017-09-16 11:11:27 +0100320 const bool is_expected_failure = info.status == TestCaseFactory::Status::EXPECTED_FAILURE;
Moritz Pflanzer5b61fd32017-09-12 15:51:33 +0100321
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100322 try
323 {
324 std::unique_ptr<TestCase> test_case = test_factory.make();
325
326 try
327 {
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100328 profiler.test_start();
329
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100330 test_case->do_setup();
331
332 for(int i = 0; i < _num_iterations; ++i)
333 {
Anthony Barbier61941452017-11-21 17:49:07 +0000334 //Start the profiler if:
335 //- there is only one iteration
336 //- it's not the first iteration of a multi-iterations run.
337 //
338 //Reason: if the CLTuner is enabled then the first run will be really messy
339 //as each kernel will be executed several times, messing up the instruments like OpenCL timers.
340 if(_num_iterations == 1 || i != 0)
Anthony Barbier2f8e0772017-11-15 13:06:46 +0000341 {
342 profiler.start();
343 }
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100344 test_case->do_run();
Joel Liang1c5ffd62017-12-28 10:09:51 +0800345 test_case->do_sync();
Anthony Barbier61941452017-11-21 17:49:07 +0000346 if(_num_iterations == 1 || i != 0)
Anthony Barbier2f8e0772017-11-15 13:06:46 +0000347 {
348 profiler.stop();
349 }
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100350 }
351
352 test_case->do_teardown();
Moritz Pflanzere33eb642017-07-31 14:48:45 +0100353
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100354 profiler.test_stop();
355
Moritz Pflanzere33eb642017-07-31 14:48:45 +0100356 // Change status to success if no error has happend
357 if(result.status == TestResult::Status::NOT_RUN)
358 {
359 result.status = TestResult::Status::SUCCESS;
360 }
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100361 }
Anthony Barbierf6705ec2017-09-28 12:01:10 +0100362 catch(const FileNotFound &error)
363 {
Pablo Tello21eaefe2018-10-10 14:38:35 +0100364 profiler.test_stop();
Anthony Barbierf6705ec2017-09-28 12:01:10 +0100365 if(_error_on_missing_assets)
366 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100367 if(_log_level >= LogLevel::ERRORS)
Anthony Barbierf6705ec2017-09-28 12:01:10 +0100368 {
369 TestError test_error(error.what(), LogLevel::ERRORS);
Giorgio Arena2d099932017-10-25 15:47:08 +0100370 func_on_all_printers([&](Printer * p)
371 {
372 p->print_error(test_error, is_expected_failure);
373 });
Anthony Barbierf6705ec2017-09-28 12:01:10 +0100374 }
375
376 result.status = TestResult::Status::FAILED;
377
378 if(_throw_errors)
379 {
380 throw;
381 }
382 }
383 else
384 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100385 if(_log_level >= LogLevel::DEBUG)
Anthony Barbierf6705ec2017-09-28 12:01:10 +0100386 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100387 func_on_all_printers([&](Printer * p)
388 {
389 p->print_info(error.what());
390 });
Anthony Barbierf6705ec2017-09-28 12:01:10 +0100391 }
392
393 result.status = TestResult::Status::NOT_RUN;
394 }
395 }
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100396 catch(const TestError &error)
397 {
Pablo Tello21eaefe2018-10-10 14:38:35 +0100398 profiler.test_stop();
Giorgio Arena2d099932017-10-25 15:47:08 +0100399 if(_log_level >= error.level())
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100400 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100401 func_on_all_printers([&](Printer * p)
402 {
403 p->print_error(error, is_expected_failure);
404 });
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100405 }
406
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100407 result.status = TestResult::Status::FAILED;
408
409 if(_throw_errors)
410 {
411 throw;
412 }
413 }
Moritz Pflanzer47752c92017-07-18 13:38:47 +0100414#ifdef ARM_COMPUTE_CL
415 catch(const ::cl::Error &error)
416 {
Pablo Tello21eaefe2018-10-10 14:38:35 +0100417 profiler.test_stop();
Giorgio Arena2d099932017-10-25 15:47:08 +0100418 if(_log_level >= LogLevel::ERRORS)
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100419 {
Moritz Pflanzer24a82462017-08-04 11:34:44 +0100420 std::stringstream stream;
421 stream << "Error code: " << error.err();
Moritz Pflanzer5b61fd32017-09-12 15:51:33 +0100422 TestError test_error(error.what(), LogLevel::ERRORS, stream.str());
Giorgio Arena2d099932017-10-25 15:47:08 +0100423 func_on_all_printers([&](Printer * p)
424 {
425 p->print_error(test_error, is_expected_failure);
426 });
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100427 }
428
Moritz Pflanzer47752c92017-07-18 13:38:47 +0100429 result.status = TestResult::Status::FAILED;
430
431 if(_throw_errors)
432 {
433 throw;
434 }
435 }
436#endif /* ARM_COMPUTE_CL */
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100437 catch(const std::exception &error)
438 {
Pablo Tello21eaefe2018-10-10 14:38:35 +0100439 profiler.test_stop();
Giorgio Arena2d099932017-10-25 15:47:08 +0100440 if(_log_level >= LogLevel::ERRORS)
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100441 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100442 func_on_all_printers([&](Printer * p)
443 {
444 p->print_error(error, is_expected_failure);
445 });
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100446 }
447
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100448 result.status = TestResult::Status::CRASHED;
449
450 if(_throw_errors)
451 {
452 throw;
453 }
454 }
455 catch(...)
456 {
Pablo Tello21eaefe2018-10-10 14:38:35 +0100457 profiler.test_stop();
Giorgio Arena2d099932017-10-25 15:47:08 +0100458 if(_log_level >= LogLevel::ERRORS)
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100459 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100460 func_on_all_printers([&](Printer * p)
461 {
462 p->print_error(TestError("Received unknown exception"), is_expected_failure);
463 });
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100464 }
465
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100466 result.status = TestResult::Status::CRASHED;
467
468 if(_throw_errors)
469 {
470 throw;
471 }
472 }
473 }
474 catch(const std::exception &error)
475 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100476 if(_log_level >= LogLevel::ERRORS)
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100477 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100478 func_on_all_printers([&](Printer * p)
479 {
480 p->print_error(error, is_expected_failure);
481 });
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100482 }
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100483
Moritz Pflanzere33eb642017-07-31 14:48:45 +0100484 result.status = TestResult::Status::CRASHED;
485
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100486 if(_throw_errors)
487 {
488 throw;
489 }
490 }
491 catch(...)
492 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100493 if(_log_level >= LogLevel::ERRORS)
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100494 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100495 func_on_all_printers([&](Printer * p)
496 {
497 p->print_error(TestError("Received unknown exception"), is_expected_failure);
498 });
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100499 }
500
Moritz Pflanzere1103a82017-07-18 12:20:45 +0100501 result.status = TestResult::Status::CRASHED;
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100502
503 if(_throw_errors)
504 {
505 throw;
506 }
507 }
508
Giorgio Arena2d099932017-10-25 15:47:08 +0100509 if(_log_level >= LogLevel::ERRORS)
Moritz Pflanzer24a82462017-08-04 11:34:44 +0100510 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100511 func_on_all_printers([](Printer * p)
512 {
513 p->print_errors_footer();
514 });
Moritz Pflanzer24a82462017-08-04 11:34:44 +0100515 }
516
Moritz Pflanzer0ce08442017-09-16 11:11:27 +0100517 _current_test_info = nullptr;
Moritz Pflanzere1103a82017-07-18 12:20:45 +0100518 _current_test_result = nullptr;
519
Moritz Pflanzerfa811652017-07-26 17:00:37 +0100520 if(result.status == TestResult::Status::FAILED)
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100521 {
Moritz Pflanzerfa811652017-07-26 17:00:37 +0100522 if(info.status == TestCaseFactory::Status::EXPECTED_FAILURE)
523 {
524 result.status = TestResult::Status::EXPECTED_FAILURE;
525 }
Moritz Pflanzere33eb642017-07-31 14:48:45 +0100526 }
527
528 if(result.status == TestResult::Status::FAILED || result.status == TestResult::Status::CRASHED)
529 {
530 if(_stop_on_error)
Moritz Pflanzerfa811652017-07-26 17:00:37 +0100531 {
ramelg01b2eba7f2021-12-23 08:32:08 +0000532 throw std::runtime_error("Abandon on first error.");
Moritz Pflanzerfa811652017-07-26 17:00:37 +0100533 }
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100534 }
535
Freddie Liardet59fd7a72021-06-17 13:30:11 +0100536 result.header_data = profiler.header();
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100537 result.measurements = profiler.measurements();
538
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100539 set_test_result(info, result);
540 log_test_end(info);
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100541}
542
543bool Framework::run()
544{
545 // Clear old test results
546 _test_results.clear();
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100547
Giorgio Arena2d099932017-10-25 15:47:08 +0100548 if(_log_level >= LogLevel::TESTS)
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100549 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100550 func_on_all_printers([](Printer * p)
551 {
552 p->print_run_header();
553 });
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100554 }
555
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100556 const std::chrono::time_point<std::chrono::high_resolution_clock> start = std::chrono::high_resolution_clock::now();
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100557
Gian Marco Iodiced30ed112018-05-16 12:01:14 +0100558 int id = 0;
559 int id_run_test = 0;
Ramy Elgammala8db6122023-05-08 03:33:43 +0100560 ARM_COMPUTE_UNUSED(id_run_test); // Not used if ARM_COMPUTE_CL is not defined
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100561
562 for(auto &test_factory : _test_factories)
563 {
564 const std::string test_case_name = test_factory->name();
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100565 const TestInfo test_info{ id, test_case_name, test_factory->mode(), test_factory->status() };
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100566
Matthew Bentham470bc1e2020-03-09 10:55:40 +0000567 if(_test_filter->is_selected(test_info))
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100568 {
Gian Marco Iodiced30ed112018-05-16 12:01:14 +0100569#ifdef ARM_COMPUTE_CL
Georgios Pinitasf5ec9812018-10-26 14:07:56 +0100570 // Every 100 tests, reset the OpenCL context to release the allocated memory
571 if(opencl_is_available() && (id_run_test % 100) == 0)
Gian Marco Iodiced30ed112018-05-16 12:01:14 +0100572 {
Georgios Pinitasc9f163b2019-11-18 14:25:45 +0000573 auto ctx_properties = CLScheduler::get().context().getInfo<CL_CONTEXT_PROPERTIES>(nullptr);
574 auto queue_properties = CLScheduler::get().queue().getInfo<CL_QUEUE_PROPERTIES>(nullptr);
575
576 cl::Context new_ctx = cl::Context(CL_DEVICE_TYPE_DEFAULT, ctx_properties.data());
577 cl::CommandQueue new_queue = cl::CommandQueue(new_ctx, CLKernelLibrary::get().get_device(), queue_properties);
578
Georgios Pinitasdf473ea2018-05-31 18:53:52 +0100579 CLKernelLibrary::get().clear_programs_cache();
Georgios Pinitasc9f163b2019-11-18 14:25:45 +0000580 CLScheduler::get().set_context(new_ctx);
581 CLScheduler::get().set_queue(new_queue);
Gian Marco Iodiced30ed112018-05-16 12:01:14 +0100582 }
583#endif // ARM_COMPUTE_CL
Pablo Tellodb8485a2019-09-24 11:03:47 +0100584
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100585 run_test(test_info, *test_factory);
Gian Marco Iodiced30ed112018-05-16 12:01:14 +0100586
587 ++id_run_test;
Georgios Pinitas7f152512019-12-16 19:59:52 +0000588
589 // Run test delay
590 sleep_in_seconds(_cooldown_sec);
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100591 }
592
593 ++id;
594 }
595
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100596 const std::chrono::time_point<std::chrono::high_resolution_clock> end = std::chrono::high_resolution_clock::now();
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100597
Giorgio Arena2d099932017-10-25 15:47:08 +0100598 if(_log_level >= LogLevel::TESTS)
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100599 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100600 func_on_all_printers([](Printer * p)
601 {
602 p->print_run_footer();
603 });
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100604 }
605
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100606 auto runtime = std::chrono::duration_cast<std::chrono::seconds>(end - start);
607 std::map<TestResult::Status, int> results = count_test_results();
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100608
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100609 if(_log_level > LogLevel::NONE)
610 {
Moritz Pflanzer8df3faf2017-07-28 13:57:53 +0100611 std::cout << "Executed " << _test_results.size() << " test(s) ("
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100612 << results[TestResult::Status::SUCCESS] << " passed, "
613 << results[TestResult::Status::EXPECTED_FAILURE] << " expected failures, "
614 << results[TestResult::Status::FAILED] << " failed, "
615 << results[TestResult::Status::CRASHED] << " crashed, "
616 << results[TestResult::Status::DISABLED] << " disabled) in " << runtime.count() << " second(s)\n";
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100617 }
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100618
steniu013e05e4e2017-08-25 17:18:01 +0100619 int num_successful_tests = results[TestResult::Status::SUCCESS] + results[TestResult::Status::EXPECTED_FAILURE] + results[TestResult::Status::DISABLED];
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100620
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100621 return (static_cast<unsigned int>(num_successful_tests) == _test_results.size());
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100622}
623
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100624void Framework::set_test_result(TestInfo info, TestResult result)
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100625{
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100626 _test_results.emplace(std::move(info), std::move(result));
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100627}
628
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100629void Framework::print_test_results(Printer &printer) const
630{
631 printer.print_run_header();
632
633 for(const auto &test : _test_results)
634 {
635 printer.print_test_header(test.first);
Freddie Liardet59fd7a72021-06-17 13:30:11 +0100636 printer.print_profiler_header(test.second.header_data);
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100637 printer.print_measurements(test.second.measurements);
638 printer.print_test_footer();
639 }
640
641 printer.print_run_footer();
642}
643
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100644Profiler Framework::get_profiler() const
645{
646 Profiler profiler;
647
Moritz Pflanzer09e4f982017-08-30 12:47:06 +0100648 const bool all_instruments = std::any_of(
649 _instruments.begin(),
650 _instruments.end(),
Giorgio Arenace58a9f2017-10-31 17:59:17 +0000651 [](InstrumentsDescription type) -> bool { return type.first == InstrumentType::ALL; });
Moritz Pflanzer09e4f982017-08-30 12:47:06 +0100652
Giorgio Arenace58a9f2017-10-31 17:59:17 +0000653 auto is_selected = [&](InstrumentsDescription instrument) -> bool
Moritz Pflanzer09e4f982017-08-30 12:47:06 +0100654 {
Giorgio Arenace58a9f2017-10-31 17:59:17 +0000655 return std::find_if(_instruments.begin(), _instruments.end(), [&](InstrumentsDescription type) -> bool {
656 const auto group = static_cast<InstrumentType>(static_cast<uint64_t>(type.first) & 0xFF00);
657 return (group == instrument.first) && (instrument.second == type.second);
Moritz Pflanzer09e4f982017-08-30 12:47:06 +0100658 })
659 != _instruments.end();
660 };
661
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100662 for(const auto &instrument : _available_instruments)
663 {
Moritz Pflanzer09e4f982017-08-30 12:47:06 +0100664 if(all_instruments || is_selected(instrument.first))
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100665 {
666 profiler.add(instrument.second());
667 }
668 }
669
670 return profiler;
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100671}
672
Giorgio Arena2d099932017-10-25 15:47:08 +0100673void Framework::add_printer(Printer *printer)
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100674{
Giorgio Arena2d099932017-10-25 15:47:08 +0100675 _printers.push_back(printer);
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100676}
677
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100678std::vector<TestInfo> Framework::test_infos() const
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100679{
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100680 std::vector<TestInfo> ids;
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100681
682 int id = 0;
683
684 for(const auto &factory : _test_factories)
685 {
Freddie Liardet59fd7a72021-06-17 13:30:11 +0100686 const TestInfo test_info{ id, factory->name(), factory->mode(), factory->status() };
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100687
Matthew Bentham470bc1e2020-03-09 10:55:40 +0000688 if(_test_filter->is_selected(test_info))
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100689 {
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100690 ids.emplace_back(std::move(test_info));
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100691 }
692
693 ++id;
694 }
695
696 return ids;
697}
steniu01172c58d2017-08-31 13:49:08 +0100698
699LogLevel Framework::log_level() const
700{
701 return _log_level;
702}
Georgios Pinitas12833d02019-07-25 13:31:10 +0100703
704void Framework::set_instruments_info(InstrumentsInfo instr_info)
705{
706 ARM_COMPUTE_ERROR_ON(instruments_info == nullptr);
707 *instruments_info = instr_info;
708}
Giorgio Arena68e29da2021-02-08 16:31:10 +0000709
710bool Framework::configure_only() const
711{
712 return _configure_only;
713}
714
715bool Framework::new_fixture_call() const
716{
717 return _new_fixture_call;
718}
719
720void Framework::set_new_fixture_call(bool val)
721{
722 _new_fixture_call = val;
723}
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100724} // namespace framework
725} // namespace test
726} // namespace arm_compute