blob: 9891170fbd44e12ede810f3dece7f33a9fb0bcf5 [file] [log] [blame]
Georgios Pinitasd8734b52017-12-22 15:27:52 +00001/*
Michalis Spyrou1a569a32019-09-10 17:20:34 +01002 * Copyright (c) 2018-2019 ARM Limited.
Georgios Pinitasd8734b52017-12-22 15:27:52 +00003 *
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 */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010024#ifndef __ARM_COMPUTE_GRAPH_NEDEVICEBACKEND_H__
25#define __ARM_COMPUTE_GRAPH_NEDEVICEBACKEND_H__
Georgios Pinitasd8734b52017-12-22 15:27:52 +000026
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010027#include "arm_compute/graph/IDeviceBackend.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000028
29#include "arm_compute/runtime/Allocator.h"
30
31namespace arm_compute
32{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010033namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000034{
35namespace backends
36{
37/** NEON device backend */
38class NEDeviceBackend final : public IDeviceBackend
39{
40public:
41 NEDeviceBackend();
42
43 // Inherited overridden methods
44 void initialize_backend() override;
45 void setup_backend_context(GraphContext &ctx) override;
Anthony Barbierb6eb3532018-08-08 13:20:04 +010046 void release_backend_context(GraphContext &ctx) override;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010047 bool is_backend_supported() override;
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010048 IAllocator *backend_allocator() override;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000049 std::unique_ptr<ITensorHandle> create_tensor(const Tensor &tensor) override;
Georgios Pinitasee33ea52018-03-08 16:01:29 +000050 std::unique_ptr<ITensorHandle> create_subtensor(ITensorHandle *parent, TensorShape shape, Coordinates coords, bool extend_parent) override;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000051 std::unique_ptr<arm_compute::IFunction> configure_node(INode &node, GraphContext &ctx) override;
Georgios Pinitas28705162018-03-21 20:10:53 +000052 Status validate_node(INode &node) override;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000053 std::shared_ptr<arm_compute::IMemoryManager> create_memory_manager(MemoryManagerAffinity affinity) override;
Michalis Spyrou1a569a32019-09-10 17:20:34 +010054 std::shared_ptr<arm_compute::IWeightsManager> create_weights_manager() override;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000055
56private:
57 Allocator _allocator; /**< NEON backend allocator */
58};
59} // namespace backends
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010060} // namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000061} // namespace arm_compute
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010062#endif //__ARM_COMPUTE_GRAPH_NEDEVICEBACKEND_H__