blob: 3030239270be122bed9fde6128b2bc4b3de91d8e [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Giorgio Arena232c4522022-03-03 10:09:01 +00002 * Copyright (c) 2016-2022 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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_CLSCHEDULER_H
25#define ARM_COMPUTE_CLSCHEDULER_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
27#include "arm_compute/core/CL/CLHelpers.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028#include "arm_compute/core/CL/CLTypes.h"
29#include "arm_compute/core/CL/OpenCL.h"
30#include "arm_compute/core/Error.h"
31#include "arm_compute/core/Types.h"
Michalis Spyrou2aad21a2020-07-02 12:43:53 +010032#include "arm_compute/core/experimental/Types.h"
SiCong Lidb4a6c12021-02-05 09:30:57 +000033#include "arm_compute/runtime/CL/CLGEMMHeuristicsHandle.h"
Michalis Spyrou402740d2021-04-20 11:26:21 +010034#include "arm_compute/runtime/CL/CLHelpers.h"
35#include "arm_compute/runtime/CL/CLTypes.h"
Georgios Pinitasc0d1c862018-03-23 15:13:15 +000036#include "arm_compute/runtime/CL/ICLTuner.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037
38namespace arm_compute
39{
40class ICLKernel;
Pablo Tellodb8485a2019-09-24 11:03:47 +010041class ICLTuner;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010042/** Provides global access to a CL context and command queue. */
Pablo Tellodb8485a2019-09-24 11:03:47 +010043class CLScheduler final
Anthony Barbier6ff3b192017-09-04 18:44:23 +010044{
Pablo Tellodb8485a2019-09-24 11:03:47 +010045public:
Anthony Barbier6ff3b192017-09-04 18:44:23 +010046 /** Constructor */
47 CLScheduler();
Gian Marcode691f02017-09-08 16:13:11 +010048 /** Prevent instances of this class from being copied (As this class contains pointers) */
49 CLScheduler(const CLScheduler &) = delete;
50 /** Prevent instances of this class from being copied (As this class contains pointers) */
51 CLScheduler &operator=(const CLScheduler &) = delete;
Pablo Tellodb8485a2019-09-24 11:03:47 +010052 /** Default destructor */
53 ~CLScheduler() = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010054 /** Access the scheduler singleton.
Pablo Tellodb8485a2019-09-24 11:03:47 +010055 * This method has been deprecated and will be removed in future releases
Anthony Barbier6ff3b192017-09-04 18:44:23 +010056 * @return The scheduler
57 */
58 static CLScheduler &get();
59 /** Initialises the context and command queue used by the scheduler to default values
60 * and sets a default device and kernel path for the @ref CLKernelLibrary.
Gian Marcode691f02017-09-08 16:13:11 +010061 *
Michalis Spyrou402740d2021-04-20 11:26:21 +010062 * @param[in] cl_tuner (Optional) Pointer to ICLTuner (default=nullptr)
63 * @param[in] gemm_h (Optional) Pointer to CLGEMMHeuristicsHandle (default = nullptr)
64 * @param[in] cl_backend_type (Optional) Type of backend to use (default = CLBackendType::Native)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010065 */
Michalis Spyrou402740d2021-04-20 11:26:21 +010066 void default_init(ICLTuner *cl_tuner = nullptr, CLGEMMHeuristicsHandle *gemm_h = nullptr, CLBackendType cl_backend_type = CLBackendType::Native);
Pablo Tellob7c308a2019-01-22 12:59:26 +000067 /** Initialises the scheduler with context and device provided by the user
68 *
69 * @param[in] device OpenCL device to be used
70 * @param[in] ctx OpenCL ctx to be used
71 * @param[in] cl_tuner (Optional) Pointer to ICLTuner (default=nullptr)
SiCong Lidb4a6c12021-02-05 09:30:57 +000072 * @param[in] gemm_h (Optional) Pointer to CLGEMMHeuristicsHandle (default = nullptr)
Pablo Tellob7c308a2019-01-22 12:59:26 +000073 */
SiCong Lidb4a6c12021-02-05 09:30:57 +000074 void default_init_with_context(cl::Device &device, cl::Context &ctx, ICLTuner *cl_tuner = nullptr, CLGEMMHeuristicsHandle *gemm_h = nullptr);
Pablo Tellob7c308a2019-01-22 12:59:26 +000075
Gunes Bayir16c56972022-03-28 21:32:33 +010076 /** Re-initializes the context and command queue used by the scheduler to default values
77 * and sets a default device and kernel path for the @ref CLKernelLibrary.
78 *
79 * @param[in] cl_tuner (Optional) Pointer to ICLTuner (default=nullptr)
80 * @param[in] gemm_h (Optional) Pointer to CLGEMMHeuristicsHandle (default = nullptr)
81 * @param[in] cl_backend_type (Optional) Type of backend to use (default = CLBackendType::Native)
82 */
83 void default_reinit(ICLTuner *cl_tuner = nullptr, CLGEMMHeuristicsHandle *gemm_h = nullptr, CLBackendType cl_backend_type = CLBackendType::Native);
84
Anthony Barbier6ff3b192017-09-04 18:44:23 +010085 /** Schedule the execution of the passed kernel if possible.
86 *
87 * @param[in] kernel Kernel to execute.
Giorgio Arena8afe6c72021-09-06 14:32:19 +010088 * @param[in] flush (Optional) Specifies if the command queue will be flushed after running the kernel. This will be ignored if job chaining is enabled.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010089 */
90 void enqueue(ICLKernel &kernel, bool flush = true);
Michalis Spyrou2aad21a2020-07-02 12:43:53 +010091 /** Schedule the execution of the passed kernel if possible.
92 *
93 * @param[in] kernel Kernel to execute.
Georgios Pinitas0499dff2020-07-31 22:21:38 +010094 * @param[in] tensors Vector containing the tensors to operate on.
Giorgio Arena8afe6c72021-09-06 14:32:19 +010095 * @param[in] flush (Optional) Specifies if the command queue will be flushed after running the kernel. This will be ignored if job chaining is enabled.
Michalis Spyrou2aad21a2020-07-02 12:43:53 +010096 */
Georgios Pinitas0499dff2020-07-31 22:21:38 +010097 void enqueue_op(ICLKernel &kernel, ITensorPack &tensors, bool flush = true);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010098 /** Initialises the context and command queue to be used by the scheduler.
99 *
Michalis Spyrou402740d2021-04-20 11:26:21 +0100100 * @param[in] context A CL context.
101 * @param[in] queue A CL command queue.
102 * @param[in] device A CL device.
103 * @param[in] cl_tuner (Optional) Pointer to OpenCL tuner (default=nullptr)
104 * Note: It is caller's responsibility to release the allocated memory for CLTuner
105 * @param[in] gemm_h (Optional) Pointer to CLGEMMHeuristicsHandle (default = nullptr)
106 * @param[in] cl_backend_type (Optional) Type of backend to use (default = CLBackendType::Native)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100107 */
Michalis Spyrou402740d2021-04-20 11:26:21 +0100108 void init(cl::Context context, cl::CommandQueue queue, const cl::Device &device, ICLTuner *cl_tuner = nullptr, CLGEMMHeuristicsHandle *gemm_h = nullptr,
109 CLBackendType cl_backend_type = CLBackendType::Native);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100110
111 /** Accessor for the associated CL context.
112 *
113 * @return A CL context.
114 */
Pablo Tellodb8485a2019-09-24 11:03:47 +0100115 cl::Context &context();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100116
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100117 /** Accessor for the associated CL command queue.
118 *
119 * @return A CL command queue.
120 */
Pablo Tellodb8485a2019-09-24 11:03:47 +0100121 cl::CommandQueue &queue();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100122
123 /** Get the target GPU.
124 *
125 * @return The target GPU.
126 */
Pablo Tellodb8485a2019-09-24 11:03:47 +0100127 GPUTarget target() const;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100128
SiCong Lidb4a6c12021-02-05 09:30:57 +0000129 /** Accessor for the associated CLGEMMHeuristicsHandle
130 *
131 * @return Pointer to CLGEMMHeuristicsHandle
132 */
133 CLGEMMHeuristicsHandle *gemm_heuristics() const;
134
Georgios Pinitas7777b1a2018-07-11 18:16:20 +0100135 /** Accessor to set the CL context to be used by the scheduler.
136 *
137 * @param[in] context A CL context.
138 */
Pablo Tellob7c308a2019-01-22 12:59:26 +0000139 void set_context(cl::Context context);
Georgios Pinitas7777b1a2018-07-11 18:16:20 +0100140
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100141 /** Accessor to set the CL command queue to be used by the scheduler.
142 *
143 * @param[in] queue A CL command queue.
144 */
Pablo Tellodb8485a2019-09-24 11:03:47 +0100145 void set_queue(cl::CommandQueue queue);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100146
147 /** Accessor to set target GPU to be used by the scheduler.
148 *
149 * @param[in] target The target GPU.
150 */
Pablo Tellodb8485a2019-09-24 11:03:47 +0100151 void set_target(GPUTarget target);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100152
Georgios Pinitas7777b1a2018-07-11 18:16:20 +0100153 /** Accessor to set the CL tuner to be used by the scheduler.
154 *
155 * @param[in] tuner A CL tuner
156 */
Pablo Tellodb8485a2019-09-24 11:03:47 +0100157 void set_tuner(ICLTuner *tuner);
Georgios Pinitas7777b1a2018-07-11 18:16:20 +0100158
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100159 /** Blocks until all commands in the associated command queue have finished. */
Pablo Tellodb8485a2019-09-24 11:03:47 +0100160 void sync();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100161
162 /** Enqueues a marker into the associated command queue and return the event.
163 *
164 * @return An event that can be waited on to block the executing thread.
165 */
Pablo Tellodb8485a2019-09-24 11:03:47 +0100166 cl::Event enqueue_sync_event();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100167
Georgios Pinitasc0d1c862018-03-23 15:13:15 +0000168 /** Tunes OpenCL kernel
Gian Marcode691f02017-09-08 16:13:11 +0100169 *
170 * @param[in] kernel Kernel to tune
Gian Marcode691f02017-09-08 16:13:11 +0100171 */
Pablo Tellodb8485a2019-09-24 11:03:47 +0100172 void tune_kernel_static(ICLKernel &kernel);
Gian Marcode691f02017-09-08 16:13:11 +0100173
Giorgio Arena8afe6c72021-09-06 14:32:19 +0100174 /** Enable job chaining. The command queue will only be flushed when @p job_chaining_size kernels have been enqueued.
175 *
176 * @param[in] job_chaining_size Kernels to enqueue before flushing
177 */
178 void enable_job_chaining(int job_chaining_size);
179
Pablo Tellodb8485a2019-09-24 11:03:47 +0100180 bool is_initialised() const;
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100181
Georgios Pinitasc0d1c862018-03-23 15:13:15 +0000182private:
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100183 void enqueue_common(ICLKernel &kernel, ITensorPack &tensors, bool flush);
SiCong Li0a486cf2022-04-07 17:41:51 +0100184 /** If job chain is disabled, then flush the command queue according to @p flush. Otherwise @p flush is ignored and the queue is only flushed when job chain count exceeds allocated job chain size
185 *
186 * @param[in] flush Flush the command queue. Ignored when job chain is enabled.
187 */
188 void flush_queue(bool flush);
Giorgio Arena232c4522022-03-03 10:09:01 +0000189
Ioan-Cristian Szabo77eb21f2017-12-22 17:32:17 +0000190 /** Flag to ensure symbols initialisation is happening before Scheduler creation */
191 static std::once_flag _initialize_symbols;
192
Sheri Zhang1efed922021-03-10 22:43:38 +0000193 cl::Context _context;
194 cl::CommandQueue _queue;
195 GPUTarget _target;
196 bool _is_initialised;
197 ICLTuner *_cl_tuner;
198 CLGEMMHeuristicsHandle *_gemm_heuristics;
Michalis Spyrou402740d2021-04-20 11:26:21 +0100199 CLBackendType _backend_type;
Giorgio Arena8afe6c72021-09-06 14:32:19 +0100200 bool _job_chaining_enabled;
201 int _job_chaining_size;
202 int _job_chaining_count;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100203};
Georgios Pinitas7ae80a92019-10-25 18:25:17 +0100204} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000205#endif /* ARM_COMPUTE_CLSCHEDULER_H */