blob: a311c6fb415cff60384e38074ed2737fe8e14ed8 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michalis Spyrou84f3ae82018-01-15 11:15:26 +00002 * Copyright (c) 2016-2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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 "arm_compute/runtime/CL/CLScheduler.h"
25
26#include "arm_compute/core/CL/ICLKernel.h"
Gian Marcode691f02017-09-08 16:13:11 +010027#include "arm_compute/runtime/CL/CLTuner.h"
Georgios Pinitas7777b1a2018-07-11 18:16:20 +010028#include "arm_compute/runtime/CL/tuners/Tuners.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029
30using namespace arm_compute;
31
Georgios Pinitasdf473ea2018-05-31 18:53:52 +010032namespace
33{
Anthony Barbierb6eb3532018-08-08 13:20:04 +010034#if defined(ARM_COMPUTE_DEBUG_ENABLED)
Georgios Pinitasdf473ea2018-05-31 18:53:52 +010035void printf_callback(const char *buffer, unsigned int len, size_t complete, void *user_data)
36{
37 printf("%.*s", len, buffer);
38}
Georgios Pinitasdf473ea2018-05-31 18:53:52 +010039#endif /* defined(ARM_COMPUTE_DEBUG_ENABLED) */
Anthony Barbierb6eb3532018-08-08 13:20:04 +010040} // namespace
Georgios Pinitasdf473ea2018-05-31 18:53:52 +010041
Ioan-Cristian Szabo77eb21f2017-12-22 17:32:17 +000042std::once_flag CLScheduler::_initialize_symbols;
43
Anthony Barbier6ff3b192017-09-04 18:44:23 +010044CLScheduler::CLScheduler()
Georgios Pinitas72ccc442018-08-14 12:52:53 +010045 : _context(), _queue(), _target(GPUTarget::MIDGARD), _is_initialised(false), _cl_tuner(nullptr), _cl_default_static_tuner(nullptr)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010046{
47}
48
49CLScheduler &CLScheduler::get()
50{
Ioan-Cristian Szabo77eb21f2017-12-22 17:32:17 +000051 std::call_once(_initialize_symbols, opencl_is_available);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010052 static CLScheduler scheduler;
53 return scheduler;
54}
55
Georgios Pinitasdf473ea2018-05-31 18:53:52 +010056void CLScheduler::default_init(ICLTuner *cl_tuner)
57{
58 if(!_is_initialised)
59 {
Anthony Barbierb6eb3532018-08-08 13:20:04 +010060 std::vector<cl::Platform> platforms;
61 cl::Platform::get(&platforms);
62 ARM_COMPUTE_ERROR_ON_MSG(platforms.size() == 0, "Couldn't find any OpenCL platform");
63 cl::Platform p = platforms[0];
64 cl::Context ctx;
65 cl::Device device;
66 std::vector<cl::Device> platform_devices;
67 p.getDevices(CL_DEVICE_TYPE_DEFAULT, &platform_devices);
68 ARM_COMPUTE_ERROR_ON_MSG(platform_devices.size() == 0, "Couldn't find any OpenCL device");
69 device = platform_devices[0];
Georgios Pinitasdf473ea2018-05-31 18:53:52 +010070#if defined(ARM_COMPUTE_DEBUG_ENABLED)
Georgios Pinitasdf473ea2018-05-31 18:53:52 +010071
Anthony Barbierb6eb3532018-08-08 13:20:04 +010072 // Query devices in the context for cl_arm_printf support
73 if(device_supports_extension(device, "cl_arm_printf"))
Georgios Pinitasdf473ea2018-05-31 18:53:52 +010074 {
75 // Create a cl_context with a printf_callback and user specified buffer size.
76 cl_context_properties properties[] =
77 {
Anthony Barbierb6eb3532018-08-08 13:20:04 +010078 CL_CONTEXT_PLATFORM, reinterpret_cast<cl_context_properties>(p()),
Georgios Pinitasdf473ea2018-05-31 18:53:52 +010079 // Enable a printf callback function for this context.
80 CL_PRINTF_CALLBACK_ARM, reinterpret_cast<cl_context_properties>(printf_callback),
81 // Request a minimum printf buffer size of 4MB for devices in the
82 // context that support this extension.
83 CL_PRINTF_BUFFERSIZE_ARM, 0x1000,
84 0
85 };
Anthony Barbierb6eb3532018-08-08 13:20:04 +010086 ctx = cl::Context(device, properties);
Georgios Pinitasdf473ea2018-05-31 18:53:52 +010087 }
Anthony Barbierb6eb3532018-08-08 13:20:04 +010088 else
Georgios Pinitasdf473ea2018-05-31 18:53:52 +010089#endif // defined(ARM_COMPUTE_DEBUG_ENABLED)
Anthony Barbierb6eb3532018-08-08 13:20:04 +010090 {
91 cl_context_properties properties[] =
92 {
93 CL_CONTEXT_PLATFORM, reinterpret_cast<cl_context_properties>(p()),
94 0
95 };
96 ctx = cl::Context(device, properties);
97 };
Georgios Pinitasdf473ea2018-05-31 18:53:52 +010098
Anthony Barbierb6eb3532018-08-08 13:20:04 +010099 cl::CommandQueue queue = cl::CommandQueue(ctx, device);
100 CLKernelLibrary::get().init("./cl_kernels/", ctx, device);
101 init(ctx, queue, device, cl_tuner);
Georgios Pinitas7777b1a2018-07-11 18:16:20 +0100102
103 // Create a default static tuner and set if none was provided
104 _cl_default_static_tuner = tuners::TunerFactory::create_tuner(_target);
Georgios Pinitasdf473ea2018-05-31 18:53:52 +0100105 }
Georgios Pinitas7777b1a2018-07-11 18:16:20 +0100106
107 // Set CL tuner
108 _cl_tuner = (cl_tuner == nullptr) ? _cl_default_static_tuner.get() : cl_tuner;
Georgios Pinitasdf473ea2018-05-31 18:53:52 +0100109}
110
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100111void CLScheduler::enqueue(ICLKernel &kernel, bool flush)
112{
steniu0134702472017-07-11 09:22:58 +0100113 ARM_COMPUTE_ERROR_ON_MSG(!_is_initialised,
114 "The CLScheduler is not initialised yet! Please call the CLScheduler::get().default_init(), \
115 or CLScheduler::get()::init() and CLKernelLibrary::get()::init() function before running functions!");
116
Gian Marcode691f02017-09-08 16:13:11 +0100117 // Tune the kernel if the CLTuner has been provided
118 if(_cl_tuner != nullptr)
119 {
120 // Tune the OpenCL kernel
Georgios Pinitasc0d1c862018-03-23 15:13:15 +0000121 _cl_tuner->tune_kernel_dynamic(kernel);
Gian Marcode691f02017-09-08 16:13:11 +0100122 }
123
124 // Run kernel
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100125 kernel.run(kernel.window(), _queue);
126
127 if(flush)
128 {
129 _queue.flush();
130 }
Ioan-Cristian Szabo77eb21f2017-12-22 17:32:17 +0000131}