blob: e26e3112fc1b54b4a8e4cf2de68d7a1ea54446fc [file] [log] [blame]
Anthony Barbier7068f992017-10-26 15:23:08 +01001/*
Georgios Pinitas7ae80a92019-10-25 18:25:17 +01002 * Copyright (c) 2017-2019 ARM Limited.
Anthony Barbier7068f992017-10-26 15:23:08 +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
25#ifndef __ARM_COMPUTE_GCSCHEDULER_H__
26#define __ARM_COMPUTE_GCSCHEDULER_H__
27
28#include "arm_compute/core/GLES_COMPUTE/IGCKernel.h"
29#include "arm_compute/core/Types.h"
30
31namespace arm_compute
32{
Georgios Pinitas7ae80a92019-10-25 18:25:17 +010033// Forward declarations
Anthony Barbier7068f992017-10-26 15:23:08 +010034class IGCKernel;
35
36/** Provides global access to a OpenGL ES context and command queue. */
Georgios Pinitas7ae80a92019-10-25 18:25:17 +010037class GCScheduler final
Anthony Barbier7068f992017-10-26 15:23:08 +010038{
Anthony Barbier7068f992017-10-26 15:23:08 +010039public:
Georgios Pinitas7ae80a92019-10-25 18:25:17 +010040 /** Constructor */
41 GCScheduler();
42 /** Destructor */
43 ~GCScheduler();
44 /** Prevent instances of this class from being copied */
45 GCScheduler(const GCScheduler &) = delete;
46 /** Prevent instances of this class from being copied */
47 GCScheduler &operator=(const GCScheduler &) = delete;
Anthony Barbier7068f992017-10-26 15:23:08 +010048 /** Access the scheduler singleton.
49 *
50 * @return The scheduler
51 */
52 static GCScheduler &get();
Anthony Barbier7068f992017-10-26 15:23:08 +010053 /** Initialises the context and command queue used by the scheduler to default values
54 * and sets a default device and kernel path for the @ref GCKernelLibrary.
55 */
56 void default_init();
Georgios Pinitas7ae80a92019-10-25 18:25:17 +010057 /** Initializes the context and display used by the Scheduler.
58 *
59 * @param[in] display Display to use
60 * @param[in] ctx Context to use
61 */
62 void default_init_with_context(EGLDisplay display, EGLContext ctx);
Anthony Barbier7068f992017-10-26 15:23:08 +010063 /** Schedule the execution of the passed kernel if possible.
64 *
65 * @param[in] kernel Kernel to execute.
66 * @param[in] flush (Optional) Specifies if the command queue will be flushed after running the kernel.
67 */
Joel Liangeb8f71e2017-12-27 13:16:00 +080068 void dispatch(IGCKernel &kernel, bool flush = true);
Anthony Barbier7068f992017-10-26 15:23:08 +010069 /** Initialises the display and context to be used by the scheduler.
70 *
71 * @param[in] dpy The EGL display connection
72 * @param[in] ctx The EGL rendering context
73 */
74 void init(EGLDisplay dpy, EGLContext ctx);
Joel Liangeb8f71e2017-12-27 13:16:00 +080075 /** Defines a barrier ordering memory transactions. */
76 void memory_barrier();
Michele Di Giorgiob8fc60f2018-04-25 11:58:07 +010077 /** Get the target GPU.
78 *
79 * @return The target GPU.
80 */
81 GPUTarget get_target() const
82 {
83 return _target;
84 }
Michele Di Giorgiob8fc60f2018-04-25 11:58:07 +010085 /** Accessor to set target GPU to be used by the scheduler.
86 *
87 * @param[in] target The target GPU.
88 */
89 void set_target(GPUTarget target)
90 {
91 _target = target;
92 }
93
Ioan-Cristian Szabo77eb21f2017-12-22 17:32:17 +000094private:
Ioan-Cristian Szabo77eb21f2017-12-22 17:32:17 +000095 /** Set up EGL context */
96 void setup_context();
97
98 /** Flag to ensure symbols initialisation is happening before Scheduler creation */
99 static std::once_flag _initialize_symbols;
100
101 EGLDisplay _display; /**< Underlying EGL Display. */
102 EGLContext _context; /**< Underlying EGL Context. */
Michele Di Giorgiob8fc60f2018-04-25 11:58:07 +0100103
104 GPUTarget _target;
Anthony Barbier7068f992017-10-26 15:23:08 +0100105};
106}
Anthony Barbier7068f992017-10-26 15:23:08 +0100107#endif /* __ARM_COMPUTE_GCSCHEDULER_H__ */