blob: 8e836ee41ff257239c699a251e25eee743fbccb9 [file] [log] [blame]
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * 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#include "Framework.h"
25
Pablo Tello4e0ac6f2018-10-01 14:31:11 +010026#include "arm_compute/runtime/Scheduler.h"
Matthew Bentham92046462020-03-07 22:15:55 +000027#include "support/MemorySupport.h"
Pablo Tellodb8485a2019-09-24 11:03:47 +010028#include "tests/framework/ParametersLibrary.h"
Matthew Bentham470bc1e2020-03-09 10:55:40 +000029#include "tests/framework/TestFilter.h"
Pablo Tellodb8485a2019-09-24 11:03:47 +010030
Gian Marco Iodiced30ed112018-05-16 12:01:14 +010031#ifdef ARM_COMPUTE_CL
Pablo Tellodb8485a2019-09-24 11:03:47 +010032#include "arm_compute/runtime/CL/CLRuntimeContext.h"
Gian Marco Iodiced30ed112018-05-16 12:01:14 +010033#include "arm_compute/runtime/CL/CLScheduler.h"
Pablo Tellodb8485a2019-09-24 11:03:47 +010034
Gian Marco Iodiced30ed112018-05-16 12:01:14 +010035#endif /* ARM_COMPUTE_CL */
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010036
37#include <chrono>
38#include <iostream>
39#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
97 instruments_info = support::cpp14::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;
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100136
Georgios Pinitas7f152512019-12-16 19:59:52 +0000137 _instruments = std::set<framework::InstrumentsDescription>(std::begin(config.instruments), std::end(config.instruments));
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100138}
139
140std::string Framework::current_suite_name() const
141{
142 return join(_test_suite_name.cbegin(), _test_suite_name.cend(), "/");
143}
144
145void Framework::push_suite(std::string name)
146{
147 _test_suite_name.emplace_back(std::move(name));
148}
149
150void Framework::pop_suite()
151{
152 _test_suite_name.pop_back();
153}
154
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100155void Framework::add_test_info(std::string info)
156{
157 _test_info.emplace_back(std::move(info));
158}
159
160void Framework::clear_test_info()
161{
162 _test_info.clear();
163}
164
165bool Framework::has_test_info() const
166{
167 return !_test_info.empty();
168}
169
170void Framework::print_test_info(std::ostream &os) const
171{
Moritz Pflanzer8df3faf2017-07-28 13:57:53 +0100172 if(!_test_info.empty())
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100173 {
Moritz Pflanzer8df3faf2017-07-28 13:57:53 +0100174 os << "CONTEXT:\n";
175
176 for(const auto &str : _test_info)
177 {
178 os << " " << str << "\n";
179 }
Moritz Pflanzerc7d15032017-07-18 16:21:16 +0100180 }
181}
182
Giorgio Arena2d099932017-10-25 15:47:08 +0100183template <typename F>
184void Framework::func_on_all_printers(F &&func)
185{
186 std::for_each(std::begin(_printers), std::end(_printers), func);
187}
188
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100189void Framework::log_test_start(const TestInfo &info)
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100190{
Giorgio Arena2d099932017-10-25 15:47:08 +0100191 if(_log_level >= LogLevel::TESTS)
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100192 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100193 func_on_all_printers([&](Printer * p)
194 {
195 p->print_test_header(info);
196 });
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100197 }
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100198}
199
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100200void Framework::log_test_skipped(const TestInfo &info)
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100201{
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100202 static_cast<void>(info);
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100203}
204
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100205void Framework::log_test_end(const TestInfo &info)
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100206{
Giorgio Arena2d099932017-10-25 15:47:08 +0100207 if(_log_level >= LogLevel::MEASUREMENTS)
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100208 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100209 func_on_all_printers([&](Printer * p)
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100210 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100211 p->print_measurements(_test_results.at(info).measurements);
212 });
213 }
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100214
Giorgio Arena2d099932017-10-25 15:47:08 +0100215 if(_log_level >= LogLevel::TESTS)
216 {
217 func_on_all_printers([](Printer * p)
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100218 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100219 p->print_test_footer();
220 });
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100221 }
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100222}
223
Moritz Pflanzer24a82462017-08-04 11:34:44 +0100224void Framework::log_failed_expectation(const TestError &error)
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100225{
Moritz Pflanzer0ce08442017-09-16 11:11:27 +0100226 ARM_COMPUTE_ERROR_ON(_current_test_info == nullptr);
227 ARM_COMPUTE_ERROR_ON(_current_test_result == nullptr);
228
229 const bool is_expected_failure = _current_test_info->status == TestCaseFactory::Status::EXPECTED_FAILURE;
230
Giorgio Arena2d099932017-10-25 15:47:08 +0100231 if(_log_level >= error.level())
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100232 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100233 func_on_all_printers([&](Printer * p)
234 {
235 p->print_error(error, is_expected_failure);
236 });
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100237 }
Moritz Pflanzere1103a82017-07-18 12:20:45 +0100238
Moritz Pflanzer0ce08442017-09-16 11:11:27 +0100239 _current_test_result->status = TestResult::Status::FAILED;
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100240}
241
steniu01172c58d2017-08-31 13:49:08 +0100242void Framework::log_info(const std::string &info)
243{
Giorgio Arena2d099932017-10-25 15:47:08 +0100244 if(_log_level >= LogLevel::DEBUG)
steniu01172c58d2017-08-31 13:49:08 +0100245 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100246 func_on_all_printers([&](Printer * p)
247 {
248 p->print_info(info);
249 });
steniu01172c58d2017-08-31 13:49:08 +0100250 }
251}
252
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100253int Framework::num_iterations() const
254{
255 return _num_iterations;
256}
257
258void Framework::set_num_iterations(int num_iterations)
259{
260 _num_iterations = num_iterations;
261}
262
263void Framework::set_throw_errors(bool throw_errors)
264{
265 _throw_errors = throw_errors;
266}
267
268bool Framework::throw_errors() const
269{
270 return _throw_errors;
271}
272
Moritz Pflanzerfa811652017-07-26 17:00:37 +0100273void Framework::set_stop_on_error(bool stop_on_error)
274{
275 _stop_on_error = stop_on_error;
276}
277
278bool Framework::stop_on_error() const
279{
280 return _stop_on_error;
281}
282
Anthony Barbierf6705ec2017-09-28 12:01:10 +0100283void Framework::set_error_on_missing_assets(bool error_on_missing_assets)
284{
285 _error_on_missing_assets = error_on_missing_assets;
286}
287
288bool Framework::error_on_missing_assets() const
289{
290 return _error_on_missing_assets;
291}
292
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100293void Framework::run_test(const TestInfo &info, TestCaseFactory &test_factory)
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100294{
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100295 if(test_factory.status() == TestCaseFactory::Status::DISABLED)
296 {
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100297 log_test_skipped(info);
298 set_test_result(info, TestResult(TestResult::Status::DISABLED));
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100299 return;
300 }
301
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100302 log_test_start(info);
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100303
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100304 Profiler profiler = get_profiler();
Moritz Pflanzere33eb642017-07-31 14:48:45 +0100305 TestResult result(TestResult::Status::NOT_RUN);
Moritz Pflanzere1103a82017-07-18 12:20:45 +0100306
Moritz Pflanzer0ce08442017-09-16 11:11:27 +0100307 _current_test_info = &info;
Moritz Pflanzere1103a82017-07-18 12:20:45 +0100308 _current_test_result = &result;
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100309
Giorgio Arena2d099932017-10-25 15:47:08 +0100310 if(_log_level >= LogLevel::ERRORS)
Moritz Pflanzer24a82462017-08-04 11:34:44 +0100311 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100312 func_on_all_printers([](Printer * p)
313 {
314 p->print_errors_header();
315 });
Moritz Pflanzer24a82462017-08-04 11:34:44 +0100316 }
317
Moritz Pflanzer0ce08442017-09-16 11:11:27 +0100318 const bool is_expected_failure = info.status == TestCaseFactory::Status::EXPECTED_FAILURE;
Moritz Pflanzer5b61fd32017-09-12 15:51:33 +0100319
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100320 try
321 {
322 std::unique_ptr<TestCase> test_case = test_factory.make();
323
324 try
325 {
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100326 profiler.test_start();
327
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100328 test_case->do_setup();
329
330 for(int i = 0; i < _num_iterations; ++i)
331 {
Anthony Barbier61941452017-11-21 17:49:07 +0000332 //Start the profiler if:
333 //- there is only one iteration
334 //- it's not the first iteration of a multi-iterations run.
335 //
336 //Reason: if the CLTuner is enabled then the first run will be really messy
337 //as each kernel will be executed several times, messing up the instruments like OpenCL timers.
338 if(_num_iterations == 1 || i != 0)
Anthony Barbier2f8e0772017-11-15 13:06:46 +0000339 {
340 profiler.start();
341 }
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100342 test_case->do_run();
Joel Liang1c5ffd62017-12-28 10:09:51 +0800343 test_case->do_sync();
Anthony Barbier61941452017-11-21 17:49:07 +0000344 if(_num_iterations == 1 || i != 0)
Anthony Barbier2f8e0772017-11-15 13:06:46 +0000345 {
346 profiler.stop();
347 }
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100348 }
349
350 test_case->do_teardown();
Moritz Pflanzere33eb642017-07-31 14:48:45 +0100351
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100352 profiler.test_stop();
353
Moritz Pflanzere33eb642017-07-31 14:48:45 +0100354 // Change status to success if no error has happend
355 if(result.status == TestResult::Status::NOT_RUN)
356 {
357 result.status = TestResult::Status::SUCCESS;
358 }
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100359 }
Anthony Barbierf6705ec2017-09-28 12:01:10 +0100360 catch(const FileNotFound &error)
361 {
Pablo Tello21eaefe2018-10-10 14:38:35 +0100362 profiler.test_stop();
Anthony Barbierf6705ec2017-09-28 12:01:10 +0100363 if(_error_on_missing_assets)
364 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100365 if(_log_level >= LogLevel::ERRORS)
Anthony Barbierf6705ec2017-09-28 12:01:10 +0100366 {
367 TestError test_error(error.what(), LogLevel::ERRORS);
Giorgio Arena2d099932017-10-25 15:47:08 +0100368 func_on_all_printers([&](Printer * p)
369 {
370 p->print_error(test_error, is_expected_failure);
371 });
Anthony Barbierf6705ec2017-09-28 12:01:10 +0100372 }
373
374 result.status = TestResult::Status::FAILED;
375
376 if(_throw_errors)
377 {
378 throw;
379 }
380 }
381 else
382 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100383 if(_log_level >= LogLevel::DEBUG)
Anthony Barbierf6705ec2017-09-28 12:01:10 +0100384 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100385 func_on_all_printers([&](Printer * p)
386 {
387 p->print_info(error.what());
388 });
Anthony Barbierf6705ec2017-09-28 12:01:10 +0100389 }
390
391 result.status = TestResult::Status::NOT_RUN;
392 }
393 }
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100394 catch(const TestError &error)
395 {
Pablo Tello21eaefe2018-10-10 14:38:35 +0100396 profiler.test_stop();
Giorgio Arena2d099932017-10-25 15:47:08 +0100397 if(_log_level >= error.level())
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100398 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100399 func_on_all_printers([&](Printer * p)
400 {
401 p->print_error(error, is_expected_failure);
402 });
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100403 }
404
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100405 result.status = TestResult::Status::FAILED;
406
407 if(_throw_errors)
408 {
409 throw;
410 }
411 }
Moritz Pflanzer47752c92017-07-18 13:38:47 +0100412#ifdef ARM_COMPUTE_CL
413 catch(const ::cl::Error &error)
414 {
Pablo Tello21eaefe2018-10-10 14:38:35 +0100415 profiler.test_stop();
Giorgio Arena2d099932017-10-25 15:47:08 +0100416 if(_log_level >= LogLevel::ERRORS)
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100417 {
Moritz Pflanzer24a82462017-08-04 11:34:44 +0100418 std::stringstream stream;
419 stream << "Error code: " << error.err();
Moritz Pflanzer5b61fd32017-09-12 15:51:33 +0100420 TestError test_error(error.what(), LogLevel::ERRORS, stream.str());
Giorgio Arena2d099932017-10-25 15:47:08 +0100421 func_on_all_printers([&](Printer * p)
422 {
423 p->print_error(test_error, is_expected_failure);
424 });
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100425 }
426
Moritz Pflanzer47752c92017-07-18 13:38:47 +0100427 result.status = TestResult::Status::FAILED;
428
429 if(_throw_errors)
430 {
431 throw;
432 }
433 }
434#endif /* ARM_COMPUTE_CL */
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100435 catch(const std::exception &error)
436 {
Pablo Tello21eaefe2018-10-10 14:38:35 +0100437 profiler.test_stop();
Giorgio Arena2d099932017-10-25 15:47:08 +0100438 if(_log_level >= LogLevel::ERRORS)
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100439 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100440 func_on_all_printers([&](Printer * p)
441 {
442 p->print_error(error, is_expected_failure);
443 });
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100444 }
445
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100446 result.status = TestResult::Status::CRASHED;
447
448 if(_throw_errors)
449 {
450 throw;
451 }
452 }
453 catch(...)
454 {
Pablo Tello21eaefe2018-10-10 14:38:35 +0100455 profiler.test_stop();
Giorgio Arena2d099932017-10-25 15:47:08 +0100456 if(_log_level >= LogLevel::ERRORS)
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100457 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100458 func_on_all_printers([&](Printer * p)
459 {
460 p->print_error(TestError("Received unknown exception"), is_expected_failure);
461 });
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100462 }
463
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100464 result.status = TestResult::Status::CRASHED;
465
466 if(_throw_errors)
467 {
468 throw;
469 }
470 }
471 }
472 catch(const std::exception &error)
473 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100474 if(_log_level >= LogLevel::ERRORS)
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100475 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100476 func_on_all_printers([&](Printer * p)
477 {
478 p->print_error(error, is_expected_failure);
479 });
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100480 }
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100481
Moritz Pflanzere33eb642017-07-31 14:48:45 +0100482 result.status = TestResult::Status::CRASHED;
483
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100484 if(_throw_errors)
485 {
486 throw;
487 }
488 }
489 catch(...)
490 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100491 if(_log_level >= LogLevel::ERRORS)
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100492 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100493 func_on_all_printers([&](Printer * p)
494 {
495 p->print_error(TestError("Received unknown exception"), is_expected_failure);
496 });
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100497 }
498
Moritz Pflanzere1103a82017-07-18 12:20:45 +0100499 result.status = TestResult::Status::CRASHED;
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100500
501 if(_throw_errors)
502 {
503 throw;
504 }
505 }
506
Giorgio Arena2d099932017-10-25 15:47:08 +0100507 if(_log_level >= LogLevel::ERRORS)
Moritz Pflanzer24a82462017-08-04 11:34:44 +0100508 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100509 func_on_all_printers([](Printer * p)
510 {
511 p->print_errors_footer();
512 });
Moritz Pflanzer24a82462017-08-04 11:34:44 +0100513 }
514
Moritz Pflanzer0ce08442017-09-16 11:11:27 +0100515 _current_test_info = nullptr;
Moritz Pflanzere1103a82017-07-18 12:20:45 +0100516 _current_test_result = nullptr;
517
Moritz Pflanzerfa811652017-07-26 17:00:37 +0100518 if(result.status == TestResult::Status::FAILED)
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100519 {
Moritz Pflanzerfa811652017-07-26 17:00:37 +0100520 if(info.status == TestCaseFactory::Status::EXPECTED_FAILURE)
521 {
522 result.status = TestResult::Status::EXPECTED_FAILURE;
523 }
Moritz Pflanzere33eb642017-07-31 14:48:45 +0100524 }
525
526 if(result.status == TestResult::Status::FAILED || result.status == TestResult::Status::CRASHED)
527 {
528 if(_stop_on_error)
Moritz Pflanzerfa811652017-07-26 17:00:37 +0100529 {
530 throw std::runtime_error("Abort on first error.");
531 }
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100532 }
533
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100534 result.measurements = profiler.measurements();
535
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100536 set_test_result(info, result);
537 log_test_end(info);
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100538}
539
540bool Framework::run()
541{
542 // Clear old test results
543 _test_results.clear();
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100544
Giorgio Arena2d099932017-10-25 15:47:08 +0100545 if(_log_level >= LogLevel::TESTS)
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100546 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100547 func_on_all_printers([](Printer * p)
548 {
549 p->print_run_header();
550 });
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100551 }
552
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100553 const std::chrono::time_point<std::chrono::high_resolution_clock> start = std::chrono::high_resolution_clock::now();
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100554
Gian Marco Iodiced30ed112018-05-16 12:01:14 +0100555 int id = 0;
556 int id_run_test = 0;
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100557
558 for(auto &test_factory : _test_factories)
559 {
560 const std::string test_case_name = test_factory->name();
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100561 const TestInfo test_info{ id, test_case_name, test_factory->mode(), test_factory->status() };
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100562
Matthew Bentham470bc1e2020-03-09 10:55:40 +0000563 if(_test_filter->is_selected(test_info))
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100564 {
Gian Marco Iodiced30ed112018-05-16 12:01:14 +0100565#ifdef ARM_COMPUTE_CL
Georgios Pinitasf5ec9812018-10-26 14:07:56 +0100566 // Every 100 tests, reset the OpenCL context to release the allocated memory
567 if(opencl_is_available() && (id_run_test % 100) == 0)
Gian Marco Iodiced30ed112018-05-16 12:01:14 +0100568 {
Georgios Pinitasc9f163b2019-11-18 14:25:45 +0000569 auto ctx_properties = CLScheduler::get().context().getInfo<CL_CONTEXT_PROPERTIES>(nullptr);
570 auto queue_properties = CLScheduler::get().queue().getInfo<CL_QUEUE_PROPERTIES>(nullptr);
571
572 cl::Context new_ctx = cl::Context(CL_DEVICE_TYPE_DEFAULT, ctx_properties.data());
573 cl::CommandQueue new_queue = cl::CommandQueue(new_ctx, CLKernelLibrary::get().get_device(), queue_properties);
574
Georgios Pinitasdf473ea2018-05-31 18:53:52 +0100575 CLKernelLibrary::get().clear_programs_cache();
Georgios Pinitasc9f163b2019-11-18 14:25:45 +0000576 CLScheduler::get().set_context(new_ctx);
577 CLScheduler::get().set_queue(new_queue);
Gian Marco Iodiced30ed112018-05-16 12:01:14 +0100578 }
579#endif // ARM_COMPUTE_CL
Pablo Tellodb8485a2019-09-24 11:03:47 +0100580
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100581 run_test(test_info, *test_factory);
Gian Marco Iodiced30ed112018-05-16 12:01:14 +0100582
583 ++id_run_test;
Georgios Pinitas7f152512019-12-16 19:59:52 +0000584
585 // Run test delay
586 sleep_in_seconds(_cooldown_sec);
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100587 }
588
589 ++id;
590 }
591
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100592 const std::chrono::time_point<std::chrono::high_resolution_clock> end = std::chrono::high_resolution_clock::now();
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100593
Giorgio Arena2d099932017-10-25 15:47:08 +0100594 if(_log_level >= LogLevel::TESTS)
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100595 {
Giorgio Arena2d099932017-10-25 15:47:08 +0100596 func_on_all_printers([](Printer * p)
597 {
598 p->print_run_footer();
599 });
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100600 }
601
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100602 auto runtime = std::chrono::duration_cast<std::chrono::seconds>(end - start);
603 std::map<TestResult::Status, int> results = count_test_results();
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100604
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100605 if(_log_level > LogLevel::NONE)
606 {
Moritz Pflanzer8df3faf2017-07-28 13:57:53 +0100607 std::cout << "Executed " << _test_results.size() << " test(s) ("
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100608 << results[TestResult::Status::SUCCESS] << " passed, "
609 << results[TestResult::Status::EXPECTED_FAILURE] << " expected failures, "
610 << results[TestResult::Status::FAILED] << " failed, "
611 << results[TestResult::Status::CRASHED] << " crashed, "
612 << results[TestResult::Status::DISABLED] << " disabled) in " << runtime.count() << " second(s)\n";
Moritz Pflanzer2ac50402017-07-24 15:52:54 +0100613 }
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100614
steniu013e05e4e2017-08-25 17:18:01 +0100615 int num_successful_tests = results[TestResult::Status::SUCCESS] + results[TestResult::Status::EXPECTED_FAILURE] + results[TestResult::Status::DISABLED];
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100616
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100617 return (static_cast<unsigned int>(num_successful_tests) == _test_results.size());
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100618}
619
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100620void Framework::set_test_result(TestInfo info, TestResult result)
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100621{
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100622 _test_results.emplace(std::move(info), std::move(result));
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100623}
624
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100625void Framework::print_test_results(Printer &printer) const
626{
627 printer.print_run_header();
628
629 for(const auto &test : _test_results)
630 {
631 printer.print_test_header(test.first);
632 printer.print_measurements(test.second.measurements);
633 printer.print_test_footer();
634 }
635
636 printer.print_run_footer();
637}
638
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100639Profiler Framework::get_profiler() const
640{
641 Profiler profiler;
642
Moritz Pflanzer09e4f982017-08-30 12:47:06 +0100643 const bool all_instruments = std::any_of(
644 _instruments.begin(),
645 _instruments.end(),
Giorgio Arenace58a9f2017-10-31 17:59:17 +0000646 [](InstrumentsDescription type) -> bool { return type.first == InstrumentType::ALL; });
Moritz Pflanzer09e4f982017-08-30 12:47:06 +0100647
Giorgio Arenace58a9f2017-10-31 17:59:17 +0000648 auto is_selected = [&](InstrumentsDescription instrument) -> bool
Moritz Pflanzer09e4f982017-08-30 12:47:06 +0100649 {
Giorgio Arenace58a9f2017-10-31 17:59:17 +0000650 return std::find_if(_instruments.begin(), _instruments.end(), [&](InstrumentsDescription type) -> bool {
651 const auto group = static_cast<InstrumentType>(static_cast<uint64_t>(type.first) & 0xFF00);
652 return (group == instrument.first) && (instrument.second == type.second);
Moritz Pflanzer09e4f982017-08-30 12:47:06 +0100653 })
654 != _instruments.end();
655 };
656
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100657 for(const auto &instrument : _available_instruments)
658 {
Moritz Pflanzer09e4f982017-08-30 12:47:06 +0100659 if(all_instruments || is_selected(instrument.first))
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100660 {
661 profiler.add(instrument.second());
662 }
663 }
664
665 return profiler;
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100666}
667
Giorgio Arena2d099932017-10-25 15:47:08 +0100668void Framework::add_printer(Printer *printer)
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100669{
Giorgio Arena2d099932017-10-25 15:47:08 +0100670 _printers.push_back(printer);
Moritz Pflanzer80fffae2017-07-05 11:02:37 +0100671}
672
Moritz Pflanzer542002c2017-07-26 16:03:58 +0100673std::vector<TestInfo> Framework::test_infos() const
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100674{
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100675 std::vector<TestInfo> ids;
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100676
677 int id = 0;
678
679 for(const auto &factory : _test_factories)
680 {
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100681 TestInfo test_info{ id, factory->name(), factory->mode(), factory->status() };
682
Matthew Bentham470bc1e2020-03-09 10:55:40 +0000683 if(_test_filter->is_selected(test_info))
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100684 {
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100685 ids.emplace_back(std::move(test_info));
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100686 }
687
688 ++id;
689 }
690
691 return ids;
692}
steniu01172c58d2017-08-31 13:49:08 +0100693
694LogLevel Framework::log_level() const
695{
696 return _log_level;
697}
Georgios Pinitas12833d02019-07-25 13:31:10 +0100698
699void Framework::set_instruments_info(InstrumentsInfo instr_info)
700{
701 ARM_COMPUTE_ERROR_ON(instruments_info == nullptr);
702 *instruments_info = instr_info;
703}
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100704} // namespace framework
705} // namespace test
706} // namespace arm_compute