blob: a23d91e9deea4d840049a425ca2def55d74e856e [file] [log] [blame]
Anthony Barbier6db0ff52018-01-05 10:59:12 +00001/*
SiCong Li4841c972021-02-03 12:17:35 +00002 * Copyright (c) 2018-2021 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
SiCong Li4841c972021-02-03 12:17:35 +000037#include "arm_compute/runtime/CL/CLGEMMHeuristicsHandle.h"
Pablo Tellob7c308a2019-01-22 12:59:26 +000038#include "arm_compute/runtime/CL/CLHelpers.h"
Anthony Barbier6db0ff52018-01-05 10:59:12 +000039#include "arm_compute/runtime/CL/CLScheduler.h"
40#endif /* ARM_COMPUTE_CL */
Anthony Barbier6db0ff52018-01-05 10:59:12 +000041
Anthony Barbierfadfc6d2018-02-28 14:02:42 +000042#include <libgen.h>
43
Anthony Barbier6db0ff52018-01-05 10:59:12 +000044using namespace arm_compute;
45using namespace arm_compute::test;
46
Anthony Barbier1fa17c22018-08-23 15:44:20 +010047namespace
48{
49std::string command_line(int argc, char **argv)
50{
51 std::stringstream ss;
52 for(int i = 0; i < argc; i++)
53 {
54 ss << argv[i] << " ";
55 }
56 return ss.str();
57}
58} // namespace
Anthony Barbier6db0ff52018-01-05 10:59:12 +000059namespace arm_compute
60{
61namespace utils
62{
Anthony Barbier9fb0cac2018-04-20 15:46:21 +010063static std::unique_ptr<Example> g_example = nullptr;
64static std::vector<char *> g_example_argv = {};
Anthony Barbier6db0ff52018-01-05 10:59:12 +000065class ExampleTest : public arm_compute::test::framework::TestCase
66{
67public:
68 ExampleTest() = default;
Anthony Barbier9fb0cac2018-04-20 15:46:21 +010069 void do_setup() override
70 {
71 ARM_COMPUTE_ERROR_ON_NULLPTR(g_example.get());
Anthony Barbiere88b9bb2018-07-12 13:26:27 +010072 _is_setup = g_example->do_setup(g_example_argv.size(), &g_example_argv[0]);
Anthony Barbier9fb0cac2018-04-20 15:46:21 +010073 }
Anthony Barbier6db0ff52018-01-05 10:59:12 +000074 void do_run() override
75 {
Anthony Barbiere88b9bb2018-07-12 13:26:27 +010076 if(_is_setup)
77 {
78 g_example->do_run();
79 }
Anthony Barbier6db0ff52018-01-05 10:59:12 +000080 }
81 void do_teardown() override
82 {
Anthony Barbiere88b9bb2018-07-12 13:26:27 +010083 if(_is_setup)
84 {
85 g_example->do_teardown();
86 }
Anthony Barbier9fb0cac2018-04-20 15:46:21 +010087 g_example = nullptr;
Anthony Barbier6db0ff52018-01-05 10:59:12 +000088 }
Anthony Barbiere88b9bb2018-07-12 13:26:27 +010089
90private:
91 bool _is_setup{ false };
Anthony Barbier6db0ff52018-01-05 10:59:12 +000092};
93
Anthony Barbier9fb0cac2018-04-20 15:46:21 +010094int run_example(int argc, char **argv, std::unique_ptr<Example> example)
Anthony Barbier6db0ff52018-01-05 10:59:12 +000095{
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010096 utils::CommandLineParser parser;
97 framework::CommonOptions options(parser);
98 auto example_args = parser.add_option<utils::ListOption<std::string>>("example_args");
Anthony Barbier979dc4f2018-03-07 09:27:48 +000099 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 +0000100 framework::Framework &framework = framework::Framework::get();
101
102 parser.parse(argc, argv);
103
104 if(options.help->is_set() && options.help->value())
105 {
106 parser.print_help(argv[0]);
107 return 0;
108 }
109
110 std::vector<std::unique_ptr<framework::Printer>> printers = options.create_printers();
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100111 g_example = std::move(example);
112 g_example_argv.clear();
113 g_example_argv.emplace_back(argv[0]);
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000114 for(auto &arg : example_args->value())
115 {
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100116 g_example_argv.emplace_back(const_cast<char *>(arg.c_str())); // NOLINT
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000117 }
Georgios Pinitas3364c4c2018-02-07 14:00:05 +0000118
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000119 if(options.log_level->value() > framework::LogLevel::NONE)
120 {
121 for(auto &p : printers)
122 {
123 p->print_global_header();
124 }
125 }
126
Pablo Tellob7c308a2019-01-22 12:59:26 +0000127#ifdef ARM_COMPUTE_CL
SiCong Li4841c972021-02-03 12:17:35 +0000128 CLGEMMHeuristicsHandle gemm_h;
Pablo Tellob7c308a2019-01-22 12:59:26 +0000129 if(opencl_is_available())
130 {
Michalis Spyrou402740d2021-04-20 11:26:21 +0100131 CLBackendType backend_type = CLBackendType::Native;
132 for(auto &arg : example_args->value())
133 {
134 if(arg.find("--target=clvk") != std::string::npos)
135 {
136 backend_type = CLBackendType::Clvk;
137 break;
138 }
139 }
140
141 auto ctx_dev_err = create_opencl_context_and_device(backend_type);
Pablo Tellob7c308a2019-01-22 12:59:26 +0000142 ARM_COMPUTE_ERROR_ON_MSG(std::get<2>(ctx_dev_err) != CL_SUCCESS, "Failed to create OpenCL context");
143 CLScheduler::get()
SiCong Li4841c972021-02-03 12:17:35 +0000144 .default_init_with_context(std::get<1>(ctx_dev_err), std::get<0>(ctx_dev_err), nullptr, &gemm_h);
Pablo Tellob7c308a2019-01-22 12:59:26 +0000145 }
146#endif /* ARM_COMPUTE_CL */
147
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000148 if(options.log_level->value() >= framework::LogLevel::CONFIG)
149 {
150 for(auto &p : printers)
151 {
Anthony Barbier9280c922018-03-14 14:23:47 +0000152 p->print_entry("Version", build_information());
Anthony Barbier1fa17c22018-08-23 15:44:20 +0100153 p->print_entry("CommandLine", command_line(argc, argv));
Anthony Barbier847864d2018-03-07 11:35:53 +0000154#ifdef ARM_COMPUTE_CL
155 if(opencl_is_available())
156 {
157 p->print_entry("CL_DEVICE_VERSION", CLKernelLibrary::get().get_device_version());
158 }
159 else
160 {
161 p->print_entry("CL_DEVICE_VERSION", "Unavailable");
162 }
163#endif /* ARM_COMPUTE_CL */
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000164 p->print_entry("Iterations", support::cpp11::to_string(options.iterations->value()));
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000165 }
166 }
167
Georgios Pinitas7f152512019-12-16 19:59:52 +0000168 // Initialize framework
169 framework::FrameworkConfig fconfig;
170 fconfig.instruments = options.instruments->value();
171 fconfig.num_iterations = options.iterations->value();
172 fconfig.log_level = options.log_level->value();
173 framework.init(fconfig);
174
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000175 for(auto &p : printers)
176 {
177 framework.add_printer(p.get());
178 }
179 framework.set_throw_errors(options.throw_errors->value());
180 arm_compute::test::framework::detail::TestSuiteRegistrar suite{ "Examples" };
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000181
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100182#ifdef BARE_METAL
183 framework.add_test_case<ExampleTest>(argv[0], framework::DatasetMode::ALL, arm_compute::test::framework::TestCaseFactory::Status::ACTIVE);
184#else /* BARE_METAL */
185 framework.add_test_case<ExampleTest>(basename(argv[0]), framework::DatasetMode::ALL, arm_compute::test::framework::TestCaseFactory::Status::ACTIVE);
186#endif /* BARE_METAL */
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000187 //func(argc, argv);
188 bool success = framework.run();
189 if(options.log_level->value() > framework::LogLevel::NONE)
190 {
191 for(auto &p : printers)
192 {
193 p->print_global_footer();
194 }
195 }
196
197 return (success ? 0 : 1);
198}
199
200} // namespace utils
201} // namespace arm_compute