blob: 41805cdbfa5c31412c61cd3e9e1368b5c2eba169 [file] [log] [blame]
Georgios Pinitasfbb80542018-03-27 17:15:49 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2019 Arm Limited.
Georgios Pinitasfbb80542018-03-27 17:15:49 +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_GRAPH_GCDEVICEBACKEND_H
25#define ARM_COMPUTE_GRAPH_GCDEVICEBACKEND_H
Georgios Pinitasfbb80542018-03-27 17:15:49 +010026
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010027#include "arm_compute/graph/IDeviceBackend.h"
Georgios Pinitasfbb80542018-03-27 17:15:49 +010028
29#include "arm_compute/runtime/GLES_COMPUTE/GCBufferAllocator.h"
30
31namespace arm_compute
32{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010033namespace graph
Georgios Pinitasfbb80542018-03-27 17:15:49 +010034{
35namespace backends
36{
37/** GLES Compute device backend */
38class GCDeviceBackend final : public IDeviceBackend
39{
40public:
41 /** Default Constructor */
42 GCDeviceBackend();
43
44 // Inherited overridden methods
45 void initialize_backend() override;
46 void setup_backend_context(GraphContext &ctx) override;
Anthony Barbierb6eb3532018-08-08 13:20:04 +010047 void release_backend_context(GraphContext &ctx) override;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010048 bool is_backend_supported() override;
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010049 IAllocator *backend_allocator() override;
Georgios Pinitasfbb80542018-03-27 17:15:49 +010050 std::unique_ptr<ITensorHandle> create_tensor(const Tensor &tensor) override;
51 std::unique_ptr<ITensorHandle> create_subtensor(ITensorHandle *parent, TensorShape shape, Coordinates coords, bool extend_parent) override;
52 std::unique_ptr<arm_compute::IFunction> configure_node(INode &node, GraphContext &ctx) override;
53 Status validate_node(INode &node) override;
54 std::shared_ptr<arm_compute::IMemoryManager> create_memory_manager(MemoryManagerAffinity affinity) override;
Michalis Spyrou1a569a32019-09-10 17:20:34 +010055 std::shared_ptr<arm_compute::IWeightsManager> create_weights_manager() override;
Georgios Pinitasfbb80542018-03-27 17:15:49 +010056
57private:
Georgios Pinitasdf473ea2018-05-31 18:53:52 +010058 bool _initialized; /**< Flag that specifies if the backend has been default initialized */
59 GCBufferAllocator _allocator; /**< GLES buffer affinity allocator */
Georgios Pinitasfbb80542018-03-27 17:15:49 +010060};
61} // namespace backends
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010062} // namespace graph
Georgios Pinitasfbb80542018-03-27 17:15:49 +010063} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +000064#endif //ARM_COMPUTE_GRAPH_GCDEVICEBACKEND_H