blob: f3de308bef4159723fe982895f4c33588b751b01 [file] [log] [blame]
Anthony Barbier6db0ff52018-01-05 10:59:12 +00001/*
Pablo Tellob7c308a2019-01-22 12:59:26 +00002 * Copyright (c) 2018-2019 ARM Limited.
Anthony Barbier6db0ff52018-01-05 10:59:12 +00003 *
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 "utils/Utils.h"
Anthony Barbier6db0ff52018-01-05 10:59:12 +000025
26#define BENCHMARK_EXAMPLES
27#include "utils/Utils.cpp"
28
29#include "arm_compute/runtime/Scheduler.h"
30#include "tests/framework/Framework.h"
31#include "tests/framework/Macros.h"
Anthony Barbier6db0ff52018-01-05 10:59:12 +000032#include "tests/framework/command_line/CommonOptions.h"
33#include "tests/framework/instruments/Instruments.h"
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010034#include "utils/command_line/CommandLineParser.h"
Anthony Barbier6db0ff52018-01-05 10:59:12 +000035
36#ifdef ARM_COMPUTE_CL
Pablo Tellob7c308a2019-01-22 12:59:26 +000037#include "arm_compute/runtime/CL/CLHelpers.h"
Anthony Barbier6db0ff52018-01-05 10:59:12 +000038#include "arm_compute/runtime/CL/CLScheduler.h"
39#endif /* ARM_COMPUTE_CL */
40#ifdef ARM_COMPUTE_GC
41#include "arm_compute/runtime/GLES_COMPUTE/GCScheduler.h"
42#endif /* ARM_COMPUTE_GC */
43
Anthony Barbierfadfc6d2018-02-28 14:02:42 +000044#include <libgen.h>
45
Anthony Barbier6db0ff52018-01-05 10:59:12 +000046using namespace arm_compute;
47using namespace arm_compute::test;
48
Anthony Barbier1fa17c22018-08-23 15:44:20 +010049namespace
50{
51std::string command_line(int argc, char **argv)
52{
53 std::stringstream ss;
54 for(int i = 0; i < argc; i++)
55 {
56 ss << argv[i] << " ";
57 }
58 return ss.str();
59}
60} // namespace
Anthony Barbier6db0ff52018-01-05 10:59:12 +000061namespace arm_compute
62{
63namespace utils
64{
Anthony Barbier9fb0cac2018-04-20 15:46:21 +010065static std::unique_ptr<Example> g_example = nullptr;
66static std::vector<char *> g_example_argv = {};
Anthony Barbier6db0ff52018-01-05 10:59:12 +000067class ExampleTest : public arm_compute::test::framework::TestCase
68{
69public:
70 ExampleTest() = default;
Anthony Barbier9fb0cac2018-04-20 15:46:21 +010071 void do_setup() override
72 {
73 ARM_COMPUTE_ERROR_ON_NULLPTR(g_example.get());
Anthony Barbiere88b9bb2018-07-12 13:26:27 +010074 _is_setup = g_example->do_setup(g_example_argv.size(), &g_example_argv[0]);
Anthony Barbier9fb0cac2018-04-20 15:46:21 +010075 }
Anthony Barbier6db0ff52018-01-05 10:59:12 +000076 void do_run() override
77 {
Anthony Barbiere88b9bb2018-07-12 13:26:27 +010078 if(_is_setup)
79 {
80 g_example->do_run();
81 }
Anthony Barbier6db0ff52018-01-05 10:59:12 +000082 }
83 void do_teardown() override
84 {
Anthony Barbiere88b9bb2018-07-12 13:26:27 +010085 if(_is_setup)
86 {
87 g_example->do_teardown();
88 }
Anthony Barbier9fb0cac2018-04-20 15:46:21 +010089 g_example = nullptr;
Anthony Barbier6db0ff52018-01-05 10:59:12 +000090 }
Anthony Barbiere88b9bb2018-07-12 13:26:27 +010091
92private:
93 bool _is_setup{ false };
Anthony Barbier6db0ff52018-01-05 10:59:12 +000094};
95
Anthony Barbier9fb0cac2018-04-20 15:46:21 +010096int run_example(int argc, char **argv, std::unique_ptr<Example> example)
Anthony Barbier6db0ff52018-01-05 10:59:12 +000097{
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010098 utils::CommandLineParser parser;
99 framework::CommonOptions options(parser);
100 auto example_args = parser.add_option<utils::ListOption<std::string>>("example_args");
Anthony Barbier979dc4f2018-03-07 09:27:48 +0000101 example_args->set_help("Arguments to pass to the example separated by commas (e.g: arg0,arg1,arg2)");
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000102 framework::Framework &framework = framework::Framework::get();
103
104 parser.parse(argc, argv);
105
106 if(options.help->is_set() && options.help->value())
107 {
108 parser.print_help(argv[0]);
109 return 0;
110 }
111
112 std::vector<std::unique_ptr<framework::Printer>> printers = options.create_printers();
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100113 g_example = std::move(example);
114 g_example_argv.clear();
115 g_example_argv.emplace_back(argv[0]);
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000116 for(auto &arg : example_args->value())
117 {
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100118 g_example_argv.emplace_back(const_cast<char *>(arg.c_str())); // NOLINT
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000119 }
Georgios Pinitas3364c4c2018-02-07 14:00:05 +0000120
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000121 if(options.log_level->value() > framework::LogLevel::NONE)
122 {
123 for(auto &p : printers)
124 {
125 p->print_global_header();
126 }
127 }
128
Pablo Tellob7c308a2019-01-22 12:59:26 +0000129#ifdef ARM_COMPUTE_CL
130 if(opencl_is_available())
131 {
132 auto ctx_dev_err = create_opencl_context_and_device();
133 ARM_COMPUTE_ERROR_ON_MSG(std::get<2>(ctx_dev_err) != CL_SUCCESS, "Failed to create OpenCL context");
134 CLScheduler::get()
135 .default_init_with_context(std::get<1>(ctx_dev_err), std::get<0>(ctx_dev_err));
136 }
137#endif /* ARM_COMPUTE_CL */
138
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000139 if(options.log_level->value() >= framework::LogLevel::CONFIG)
140 {
141 for(auto &p : printers)
142 {
Anthony Barbier9280c922018-03-14 14:23:47 +0000143 p->print_entry("Version", build_information());
Anthony Barbier1fa17c22018-08-23 15:44:20 +0100144 p->print_entry("CommandLine", command_line(argc, argv));
Anthony Barbier847864d2018-03-07 11:35:53 +0000145#ifdef ARM_COMPUTE_CL
146 if(opencl_is_available())
147 {
148 p->print_entry("CL_DEVICE_VERSION", CLKernelLibrary::get().get_device_version());
149 }
150 else
151 {
152 p->print_entry("CL_DEVICE_VERSION", "Unavailable");
153 }
154#endif /* ARM_COMPUTE_CL */
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000155 p->print_entry("Iterations", support::cpp11::to_string(options.iterations->value()));
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000156 }
157 }
158
159 framework.init(options.instruments->value(), options.iterations->value(), framework::DatasetMode::ALL, "", "", options.log_level->value());
160 for(auto &p : printers)
161 {
162 framework.add_printer(p.get());
163 }
164 framework.set_throw_errors(options.throw_errors->value());
165 arm_compute::test::framework::detail::TestSuiteRegistrar suite{ "Examples" };
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000166
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100167#ifdef BARE_METAL
168 framework.add_test_case<ExampleTest>(argv[0], framework::DatasetMode::ALL, arm_compute::test::framework::TestCaseFactory::Status::ACTIVE);
169#else /* BARE_METAL */
170 framework.add_test_case<ExampleTest>(basename(argv[0]), framework::DatasetMode::ALL, arm_compute::test::framework::TestCaseFactory::Status::ACTIVE);
171#endif /* BARE_METAL */
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000172 //func(argc, argv);
173 bool success = framework.run();
174 if(options.log_level->value() > framework::LogLevel::NONE)
175 {
176 for(auto &p : printers)
177 {
178 p->print_global_footer();
179 }
180 }
181
182 return (success ? 0 : 1);
183}
184
185} // namespace utils
186} // namespace arm_compute