blob: 1cf2af47d7349c4d620fd679170954e452cf227a [file] [log] [blame]
Anthony Barbier7068f992017-10-26 15:23:08 +01001/*
Michele Di Giorgiob8fc60f2018-04-25 11:58:07 +01002 * Copyright (c) 2017-2018 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{
33class IGCKernel;
34
35/** Provides global access to a OpenGL ES context and command queue. */
36class GCScheduler
37{
Anthony Barbier7068f992017-10-26 15:23:08 +010038public:
39 /** Access the scheduler singleton.
40 *
41 * @return The scheduler
42 */
43 static GCScheduler &get();
44
45 /** Initialises the context and command queue used by the scheduler to default values
46 * and sets a default device and kernel path for the @ref GCKernelLibrary.
47 */
48 void default_init();
49
50 /** Schedule the execution of the passed kernel if possible.
51 *
52 * @param[in] kernel Kernel to execute.
53 * @param[in] flush (Optional) Specifies if the command queue will be flushed after running the kernel.
54 */
Joel Liangeb8f71e2017-12-27 13:16:00 +080055 void dispatch(IGCKernel &kernel, bool flush = true);
Anthony Barbier7068f992017-10-26 15:23:08 +010056
57 /** Initialises the display and context to be used by the scheduler.
58 *
59 * @param[in] dpy The EGL display connection
60 * @param[in] ctx The EGL rendering context
61 */
62 void init(EGLDisplay dpy, EGLContext ctx);
63
Joel Liangeb8f71e2017-12-27 13:16:00 +080064 /** Defines a barrier ordering memory transactions. */
65 void memory_barrier();
Ioan-Cristian Szabo77eb21f2017-12-22 17:32:17 +000066
Michele Di Giorgiob8fc60f2018-04-25 11:58:07 +010067 /** Get the target GPU.
68 *
69 * @return The target GPU.
70 */
71 GPUTarget get_target() const
72 {
73 return _target;
74 }
75
76 /** Accessor to set target GPU to be used by the scheduler.
77 *
78 * @param[in] target The target GPU.
79 */
80 void set_target(GPUTarget target)
81 {
82 _target = target;
83 }
84
Ioan-Cristian Szabo77eb21f2017-12-22 17:32:17 +000085private:
86 /** Constructor */
87 GCScheduler();
88 /** Destructor */
89 ~GCScheduler();
90 /** Prevent instances of this class from being copied */
91 GCScheduler(const GCScheduler &) = delete;
92 /** Prevent instances of this class from being copied */
93 GCScheduler &operator=(const GCScheduler &) = delete;
94
95 /** 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__ */