blob: 309aee3bb56fa411c4916e482078277687498522 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 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_ISCHEDULER_H
25#define ARM_COMPUTE_ISCHEDULER_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
Moritz Pflanzerc186b572017-09-07 09:48:04 +010027#include "arm_compute/core/CPP/CPPTypes.h"
Michalis Spyroubcd23522020-05-21 15:02:36 +010028#include "arm_compute/core/Types.h"
29#include "arm_compute/core/experimental/Types.h"
Moritz Pflanzerc186b572017-09-07 09:48:04 +010030
Anthony Barbier52ecb062018-05-25 13:32:10 +010031#include <functional>
Joseph Dobson6f8b17d2020-02-11 19:32:11 +000032#include <limits>
Anthony Barbier52ecb062018-05-25 13:32:10 +010033
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034namespace arm_compute
35{
36class ICPPKernel;
Michalis Spyroubcd23522020-05-21 15:02:36 +010037class ITensor;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038
39/** Scheduler interface to run kernels */
40class IScheduler
41{
42public:
Anthony Barbier376c85f2018-05-25 14:17:21 +010043 /** Strategies available to split a workload */
44 enum class StrategyHint
45 {
46 STATIC, /**< Split the workload evenly among the threads */
47 DYNAMIC, /**< Split the workload dynamically using a bucket system */
48 };
Joseph Dobson6f8b17d2020-02-11 19:32:11 +000049
Georgios Pinitas06e890b2020-07-09 18:38:34 +010050 /** Function to be used and map a given thread id to a logical core id
51 *
52 * Mapping function expects the thread index and total number of cores as input,
53 * and returns the logical core index to bind against
54 */
55 using BindFunc = std::function<int(int, int)>;
56
Joseph Dobson6f8b17d2020-02-11 19:32:11 +000057 /** When arm_compute::ISchedular::Hints::_split_dimension is initialized with this value
58 * then the schedular is free to break down the problem space over as many dimensions
59 * as it wishes
60 */
61 static constexpr unsigned int split_dimensions_all = std::numeric_limits<unsigned>::max();
62
Anthony Barbier376c85f2018-05-25 14:17:21 +010063 /** Scheduler hints
64 *
65 * Collection of preferences set by the function regarding how to split a given workload
66 */
67 class Hints
68 {
69 public:
70 /** Constructor
71 *
72 * @param[in] split_dimension Dimension along which to split the kernel's execution window.
73 * @param[in] strategy (Optional) Split strategy.
Georgios Pinitas77d42522019-11-05 13:35:47 +000074 * @param[in] threshold (Optional) Dynamic scheduling capping threshold.
Anthony Barbier376c85f2018-05-25 14:17:21 +010075 */
Georgios Pinitas77d42522019-11-05 13:35:47 +000076 Hints(unsigned int split_dimension, StrategyHint strategy = StrategyHint::STATIC, int threshold = 0)
77 : _split_dimension(split_dimension), _strategy(strategy), _threshold(threshold)
Anthony Barbier376c85f2018-05-25 14:17:21 +010078 {
79 }
80 /** Set the split_dimension hint
81 *
82 * @param[in] split_dimension Dimension along which to split the kernel's execution window.
83 *
84 * @return the Hints object
85 */
86 Hints &set_split_dimension(unsigned int split_dimension)
87 {
88 _split_dimension = split_dimension;
89 return *this;
90 }
91 /** Return the prefered split dimension
92 *
93 * @return The split dimension
94 */
95 unsigned int split_dimension() const
96 {
97 return _split_dimension;
98 }
99
100 /** Set the strategy hint
101 *
102 * @param[in] strategy Prefered strategy to use to split the workload
103 *
104 * @return the Hints object
105 */
106 Hints &set_strategy(StrategyHint strategy)
107 {
108 _strategy = strategy;
109 return *this;
110 }
111 /** Return the prefered strategy to use to split workload.
112 *
113 * @return The strategy
114 */
115 StrategyHint strategy() const
116 {
117 return _strategy;
118 }
Georgios Pinitas77d42522019-11-05 13:35:47 +0000119 /** Return the granule capping threshold to be used by dynamic scheduling.
120 *
121 * @return The capping threshold
122 */
123 int threshold() const
124 {
125 return _threshold;
126 }
Anthony Barbier376c85f2018-05-25 14:17:21 +0100127
128 private:
129 unsigned int _split_dimension;
130 StrategyHint _strategy;
Georgios Pinitas77d42522019-11-05 13:35:47 +0000131 int _threshold;
Anthony Barbier376c85f2018-05-25 14:17:21 +0100132 };
Anthony Barbier52ecb062018-05-25 13:32:10 +0100133 /** Signature for the workloads to execute */
134 using Workload = std::function<void(const ThreadInfo &)>;
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100135 /** Default constructor. */
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100136 IScheduler();
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100137
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100138 /** Destructor. */
139 virtual ~IScheduler() = default;
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100140
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100141 /** Sets the number of threads the scheduler will use to run the kernels.
142 *
143 * @param[in] num_threads If set to 0, then one thread per CPU core available on the system will be used, otherwise the number of threads specified.
144 */
145 virtual void set_num_threads(unsigned int num_threads) = 0;
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100146
Georgios Pinitas06e890b2020-07-09 18:38:34 +0100147 /** Sets the number of threads the scheduler will use to run the kernels but also using a binding function to pin the threads to given logical cores
148 *
149 * @param[in] num_threads If set to 0, then one thread per CPU core available on the system will be used, otherwise the number of threads specified.
150 * @param[in] func Binding function to use.
151 */
152 virtual void set_num_threads_with_affinity(unsigned int num_threads, BindFunc func);
153
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100154 /** Returns the number of threads that the SingleThreadScheduler has in his pool.
155 *
156 * @return Number of threads available in SingleThreadScheduler.
157 */
158 virtual unsigned int num_threads() const = 0;
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100159
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100160 /** Runs the kernel in the same thread as the caller synchronously.
161 *
Anthony Barbier376c85f2018-05-25 14:17:21 +0100162 * @param[in] kernel Kernel to execute.
163 * @param[in] hints Hints for the scheduler.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100164 */
Anthony Barbier376c85f2018-05-25 14:17:21 +0100165 virtual void schedule(ICPPKernel *kernel, const Hints &hints) = 0;
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100166
Michalis Spyroubcd23522020-05-21 15:02:36 +0100167 /** Runs the kernel in the same thread as the caller synchronously.
168 *
169 * @param[in] kernel Kernel to execute.
170 * @param[in] hints Hints for the scheduler.
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100171 * @param[in] tensors Vector containing the tensors to operate on.
Michalis Spyroubcd23522020-05-21 15:02:36 +0100172 */
Georgios Pinitas0499dff2020-07-31 22:21:38 +0100173 virtual void schedule_op(ICPPKernel *kernel, const Hints &hints, ITensorPack &tensors) = 0;
Michalis Spyroubcd23522020-05-21 15:02:36 +0100174
Anthony Barbier52ecb062018-05-25 13:32:10 +0100175 /** Execute all the passed workloads
176 *
177 * @note there is no guarantee regarding the order in which the workloads will be executed or whether or not they will be executed in parallel.
178 *
179 * @param[in] workloads Array of workloads to run
Anthony Barbier148b0752018-09-11 14:19:39 +0100180 * @param[in] tag String that can be used by profiling tools to identify the workloads run by the scheduler (Can be null).
Anthony Barbier52ecb062018-05-25 13:32:10 +0100181 */
Anthony Barbier148b0752018-09-11 14:19:39 +0100182 virtual void run_tagged_workloads(std::vector<Workload> &workloads, const char *tag);
Anthony Barbier52ecb062018-05-25 13:32:10 +0100183
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100184 /** Get CPU info.
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100185 *
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100186 * @return CPU info.
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100187 */
Pablo Tello7fad9b12018-03-14 17:55:27 +0000188 CPUInfo &cpu_info();
Georgios Pinitas53d12272018-02-01 20:23:25 +0000189 /** Get a hint for the best possible number of execution threads
190 *
191 * @warning In case we can't work out the best number of threads,
192 * std::thread::hardware_concurrency() is returned else 1 in case of bare metal builds
193 *
194 * @return Best possible number of execution threads to use
195 */
196 unsigned int num_threads_hint() const;
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100197
198protected:
Anthony Barbier148b0752018-09-11 14:19:39 +0100199 /** Execute all the passed workloads
200 *
201 * @note there is no guarantee regarding the order in which the workloads will be executed or whether or not they will be executed in parallel.
202 *
203 * @param[in] workloads Array of workloads to run
204 */
205 virtual void run_workloads(std::vector<Workload> &workloads) = 0;
Pablo Tello7fad9b12018-03-14 17:55:27 +0000206 CPUInfo _cpu_info;
Georgios Pinitas53d12272018-02-01 20:23:25 +0000207
morgolock51112642020-08-20 14:51:39 +0100208 void schedule_common(ICPPKernel *kernel, const Hints &hints, ITensorPack &tensors);
209
Georgios Pinitas53d12272018-02-01 20:23:25 +0000210private:
211 unsigned int _num_threads_hint = {};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100212};
Georgios Pinitas77d42522019-11-05 13:35:47 +0000213} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000214#endif /* ARM_COMPUTE_ISCHEDULER_H */