blob: a311c6fb415cff60384e38074ed2737fe8e14ed8 [file] [log] [blame]
Anthony Barbier871448e2017-03-24 14:54:29 +00001/*
Anthony Barbierf45d5a92018-01-24 16:23:15 +00002 * Copyright (c) 2016-2018 ARM Limited.
Anthony Barbier871448e2017-03-24 14:54:29 +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 "arm_compute/runtime/CL/CLScheduler.h"
25
26#include "arm_compute/core/CL/ICLKernel.h"
Kaizen8938bd32017-09-28 14:38:23 +010027#include "arm_compute/runtime/CL/CLTuner.h"
Jenkins52ba29e2018-08-29 15:32:11 +000028#include "arm_compute/runtime/CL/tuners/Tuners.h"
Anthony Barbier871448e2017-03-24 14:54:29 +000029
30using namespace arm_compute;
31
Jenkins52ba29e2018-08-29 15:32:11 +000032namespace
33{
34#if defined(ARM_COMPUTE_DEBUG_ENABLED)
35void printf_callback(const char *buffer, unsigned int len, size_t complete, void *user_data)
36{
37 printf("%.*s", len, buffer);
38}
39#endif /* defined(ARM_COMPUTE_DEBUG_ENABLED) */
40} // namespace
41
Anthony Barbierf45d5a92018-01-24 16:23:15 +000042std::once_flag CLScheduler::_initialize_symbols;
43
Anthony Barbier871448e2017-03-24 14:54:29 +000044CLScheduler::CLScheduler()
Jenkins52ba29e2018-08-29 15:32:11 +000045 : _context(), _queue(), _target(GPUTarget::MIDGARD), _is_initialised(false), _cl_tuner(nullptr), _cl_default_static_tuner(nullptr)
Anthony Barbier871448e2017-03-24 14:54:29 +000046{
47}
48
49CLScheduler &CLScheduler::get()
50{
Anthony Barbierf45d5a92018-01-24 16:23:15 +000051 std::call_once(_initialize_symbols, opencl_is_available);
Anthony Barbier871448e2017-03-24 14:54:29 +000052 static CLScheduler scheduler;
53 return scheduler;
54}
55
Jenkins52ba29e2018-08-29 15:32:11 +000056void CLScheduler::default_init(ICLTuner *cl_tuner)
57{
58 if(!_is_initialised)
59 {
60 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];
70#if defined(ARM_COMPUTE_DEBUG_ENABLED)
71
72 // Query devices in the context for cl_arm_printf support
73 if(device_supports_extension(device, "cl_arm_printf"))
74 {
75 // Create a cl_context with a printf_callback and user specified buffer size.
76 cl_context_properties properties[] =
77 {
78 CL_CONTEXT_PLATFORM, reinterpret_cast<cl_context_properties>(p()),
79 // 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 };
86 ctx = cl::Context(device, properties);
87 }
88 else
89#endif // defined(ARM_COMPUTE_DEBUG_ENABLED)
90 {
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 };
98
99 cl::CommandQueue queue = cl::CommandQueue(ctx, device);
100 CLKernelLibrary::get().init("./cl_kernels/", ctx, device);
101 init(ctx, queue, device, cl_tuner);
102
103 // Create a default static tuner and set if none was provided
104 _cl_default_static_tuner = tuners::TunerFactory::create_tuner(_target);
105 }
106
107 // Set CL tuner
108 _cl_tuner = (cl_tuner == nullptr) ? _cl_default_static_tuner.get() : cl_tuner;
109}
110
Anthony Barbier871448e2017-03-24 14:54:29 +0000111void CLScheduler::enqueue(ICLKernel &kernel, bool flush)
112{
Kaizen8938bd32017-09-28 14:38:23 +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
117 // Tune the kernel if the CLTuner has been provided
118 if(_cl_tuner != nullptr)
119 {
120 // Tune the OpenCL kernel
Jenkinsb3a371b2018-05-23 11:36:53 +0100121 _cl_tuner->tune_kernel_dynamic(kernel);
Kaizen8938bd32017-09-28 14:38:23 +0100122 }
123
124 // Run kernel
Anthony Barbier871448e2017-03-24 14:54:29 +0000125 kernel.run(kernel.window(), _queue);
126
127 if(flush)
128 {
129 _queue.flush();
130 }
Anthony Barbierf45d5a92018-01-24 16:23:15 +0000131}