blob: 7287f9f3f7269bbc51440cfd1c5a835eca42f352 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Milos Puzovic385dad22022-07-27 18:35:28 +00002 * Copyright (c) 2017-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 */
24#include "arm_compute/runtime/OMP/OMPScheduler.h"
25
26#include "arm_compute/core/CPP/ICPPKernel.h"
27#include "arm_compute/core/Error.h"
28#include "arm_compute/core/Helpers.h"
29#include "arm_compute/core/Utils.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#include <omp.h>
31
Georgios Pinitas12833d02019-07-25 13:31:10 +010032namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033{
Moritz Pflanzerf4af76e2017-09-06 07:42:43 +010034OMPScheduler::OMPScheduler() // NOLINT
Anthony Barbier6ff3b192017-09-04 18:44:23 +010035 : _num_threads(omp_get_max_threads())
36{
37}
38
39unsigned int OMPScheduler::num_threads() const
40{
41 return _num_threads;
42}
43
44void OMPScheduler::set_num_threads(unsigned int num_threads)
45{
46 const unsigned int num_cores = omp_get_max_threads();
Georgios Pinitas4bd9fda2017-10-04 12:35:58 +010047 _num_threads = (num_threads == 0) ? num_cores : num_threads;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010048}
49
Anthony Barbier376c85f2018-05-25 14:17:21 +010050void OMPScheduler::schedule(ICPPKernel *kernel, const Hints &hints)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010051{
morgolock51112642020-08-20 14:51:39 +010052 ITensorPack tensors;
Sang-Hoon Park0094c022021-01-20 18:16:47 +000053 schedule_common(kernel, hints, kernel->window(), tensors);
Georgios Pinitas584252d2018-06-29 18:25:22 +010054}
55
Sang-Hoon Park0094c022021-01-20 18:16:47 +000056void OMPScheduler::schedule_op(ICPPKernel *kernel, const Hints &hints, const Window &window, ITensorPack &tensors)
Michalis Spyroubcd23522020-05-21 15:02:36 +010057{
58 ARM_COMPUTE_ERROR_ON_MSG(!kernel, "The child class didn't set the kernel");
59 ARM_COMPUTE_ERROR_ON_MSG(hints.strategy() == StrategyHint::DYNAMIC,
60 "Dynamic scheduling is not supported in OMPScheduler");
61
cfRodd2475c72022-11-15 15:33:12 +000062 const Window & max_window = window;
Michalis Spyroubcd23522020-05-21 15:02:36 +010063 const unsigned int num_iterations = max_window.num_iterations(hints.split_dimension());
64 const unsigned int num_threads = std::min(num_iterations, _num_threads);
65
66 if(!kernel->is_parallelisable() || num_threads == 1)
67 {
68 ThreadInfo info;
Michalis Spyrou20fca522021-06-07 14:23:57 +010069 info.cpu_info = &cpu_info();
Georgios Pinitas0499dff2020-07-31 22:21:38 +010070 kernel->run_op(tensors, max_window, info);
Michalis Spyroubcd23522020-05-21 15:02:36 +010071 }
72 else
73 {
74 const unsigned int num_windows = num_threads;
75 std::vector<IScheduler::Workload> workloads(num_windows);
76 for(unsigned int t = 0; t < num_windows; t++)
77 {
78 //Capture 't' by copy, all the other variables by reference:
cfRodd2475c72022-11-15 15:33:12 +000079 workloads[t] = [t, &hints, &max_window, &num_windows, &kernel, &tensors](const ThreadInfo &info) {
Michalis Spyroubcd23522020-05-21 15:02:36 +010080 Window win = max_window.split_window(hints.split_dimension(), t, num_windows);
81 win.validate();
Georgios Pinitas0499dff2020-07-31 22:21:38 +010082 kernel->run_op(tensors, win, info);
Michalis Spyroubcd23522020-05-21 15:02:36 +010083 };
84 }
85 run_workloads(workloads);
86 }
87}
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +000088#ifndef DOXYGEN_SKIP_THIS
Georgios Pinitas584252d2018-06-29 18:25:22 +010089void OMPScheduler::run_workloads(std::vector<arm_compute::IScheduler::Workload> &workloads)
90{
cfRodd2475c72022-11-15 15:33:12 +000091 const unsigned int amount_of_work = static_cast<unsigned int>(workloads.size());
92 const unsigned int num_threads_to_use = std::min(_num_threads, amount_of_work);
93
94 if(amount_of_work < 1 || num_threads_to_use == 1)
Georgios Pinitas584252d2018-06-29 18:25:22 +010095 {
96 return;
97 }
98
99 ThreadInfo info;
Michalis Spyrou20fca522021-06-07 14:23:57 +0100100 info.cpu_info = &cpu_info();
cfRodd2475c72022-11-15 15:33:12 +0000101 info.num_threads = num_threads_to_use;
102#pragma omp parallel for firstprivate(info) num_threads(num_threads_to_use) default(shared) proc_bind(close) schedule(static, 1)
Milos Puzovic385dad22022-07-27 18:35:28 +0000103 for(unsigned int wid = 0; wid < amount_of_work; ++wid)
Georgios Pinitas584252d2018-06-29 18:25:22 +0100104 {
cfRodd2475c72022-11-15 15:33:12 +0000105 const int tid = omp_get_thread_num();
106
Georgios Pinitas584252d2018-06-29 18:25:22 +0100107 info.thread_id = tid;
Milos Puzovic385dad22022-07-27 18:35:28 +0000108 workloads[wid](info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100109 }
110}
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +0000111#endif /* DOXYGEN_SKIP_THIS */
Georgios Pinitas12833d02019-07-25 13:31:10 +0100112} // namespace arm_compute