blob: 8aac9c4023e068b13979a8773359a0f33ae6d924 [file] [log] [blame]
Anthony Barbier7068f992017-10-26 15:23:08 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
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 */
55 void enqueue(IGCKernel &kernel, bool flush = true);
56
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
64 /** Blocks until all commands in the associated command queue have finished. */
65 void sync();
Ioan-Cristian Szabo77eb21f2017-12-22 17:32:17 +000066
67private:
68 /** Constructor */
69 GCScheduler();
70 /** Destructor */
71 ~GCScheduler();
72 /** Prevent instances of this class from being copied */
73 GCScheduler(const GCScheduler &) = delete;
74 /** Prevent instances of this class from being copied */
75 GCScheduler &operator=(const GCScheduler &) = delete;
76
77 /** Set up EGL context */
78 void setup_context();
79
80 /** Flag to ensure symbols initialisation is happening before Scheduler creation */
81 static std::once_flag _initialize_symbols;
82
83 EGLDisplay _display; /**< Underlying EGL Display. */
84 EGLContext _context; /**< Underlying EGL Context. */
Anthony Barbier7068f992017-10-26 15:23:08 +010085};
86}
Anthony Barbier7068f992017-10-26 15:23:08 +010087#endif /* __ARM_COMPUTE_GCSCHEDULER_H__ */