blob: 23ced2fef3066085accc57f5aca6938b73d66dc4 [file] [log] [blame]
Georgios Pinitasd8734b52017-12-22 15:27:52 +00001/*
2 * Copyright (c) 2018 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 */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010024#include "arm_compute/graph/backends/NEON/NEDeviceBackend.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000025
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010026#include "arm_compute/graph/Graph.h"
27#include "arm_compute/graph/GraphContext.h"
28#include "arm_compute/graph/INode.h"
29#include "arm_compute/graph/Logger.h"
30#include "arm_compute/graph/Tensor.h"
31#include "arm_compute/graph/backends/BackendRegistrar.h"
32#include "arm_compute/graph/backends/NEON/NEFunctionFactory.h"
33#include "arm_compute/graph/backends/NEON/NENodeValidator.h"
34#include "arm_compute/graph/backends/NEON/NESubTensorHandle.h"
35#include "arm_compute/graph/backends/NEON/NETensorHandle.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000036
37#include "arm_compute/core/TensorInfo.h"
38#include "arm_compute/runtime/Allocator.h"
39#include "arm_compute/runtime/BlobLifetimeManager.h"
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010040#include "arm_compute/runtime/MemoryGroup.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000041#include "arm_compute/runtime/MemoryManagerOnDemand.h"
42#include "arm_compute/runtime/OffsetLifetimeManager.h"
43#include "arm_compute/runtime/PoolManager.h"
Georgios Pinitas9a8c6722018-03-21 17:52:35 +000044#include "arm_compute/runtime/Scheduler.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000045
46#include "support/ToolchainSupport.h"
47
48namespace arm_compute
49{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010050namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000051{
52namespace backends
53{
54/** Register NEON backend */
55static detail::BackendRegistrar<NEDeviceBackend> NEDeviceBackend_registrar(Target::NEON);
56
57NEDeviceBackend::NEDeviceBackend()
58 : _allocator()
59{
60}
61
62void NEDeviceBackend::initialize_backend()
63{
Anthony Barbierb6eb3532018-08-08 13:20:04 +010064 //Nothing to do
65}
66
67void NEDeviceBackend::release_backend_context(GraphContext &ctx)
68{
69 //Nothing to do
70 ARM_COMPUTE_UNUSED(ctx);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000071}
72
73void NEDeviceBackend::setup_backend_context(GraphContext &ctx)
74{
Georgios Pinitas9a8c6722018-03-21 17:52:35 +000075 // Set number of threads
Anthony Barbiera1be5ba2018-04-10 16:53:02 +010076 if(ctx.config().num_threads >= 0)
77 {
78 Scheduler::get().set_num_threads(ctx.config().num_threads);
79 }
Georgios Pinitas9a8c6722018-03-21 17:52:35 +000080
81 // Create function level memory manager
Georgios Pinitasd8734b52017-12-22 15:27:52 +000082 if(ctx.memory_management_ctx(Target::NEON) == nullptr)
83 {
84 MemoryManagerContext mm_ctx;
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010085 mm_ctx.target = Target::NEON;
86 mm_ctx.intra_mm = create_memory_manager(MemoryManagerAffinity::Offset);
87 mm_ctx.cross_mm = create_memory_manager(MemoryManagerAffinity::Offset);
88 mm_ctx.cross_group = std::make_shared<MemoryGroup>(mm_ctx.cross_mm);
Georgios Pinitas9da19e92018-10-11 15:33:11 +010089 mm_ctx.allocator = &_allocator;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000090
91 ctx.insert_memory_management_ctx(std::move(mm_ctx));
92 }
93}
94
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010095bool NEDeviceBackend::is_backend_supported()
96{
97 return true;
98}
99
Georgios Pinitas3d1489d2018-05-03 20:47:16 +0100100IAllocator *NEDeviceBackend::backend_allocator()
101{
102 return &_allocator;
103}
104
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000105std::unique_ptr<ITensorHandle> NEDeviceBackend::create_tensor(const Tensor &tensor)
106{
107 // Get tensor descriptor
108 const TensorDescriptor &tensor_desc = tensor.desc();
109 ARM_COMPUTE_ERROR_ON(tensor_desc.target != Target::NEON);
110
111 // Create backend tensor handle
Giorgio Arenabb54e4e2018-04-05 17:20:34 +0100112 TensorInfo info(tensor_desc.shape, 1, tensor_desc.data_type, tensor_desc.quant_info);
Georgios Pinitascac13b12018-04-27 19:07:19 +0100113 info.set_data_layout(tensor_desc.layout);
114 auto backend_tensor_handle = support::cpp14::make_unique<NETensorHandle>(info);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000115
116 return std::move(backend_tensor_handle);
117}
118
Georgios Pinitasee33ea52018-03-08 16:01:29 +0000119std::unique_ptr<ITensorHandle> NEDeviceBackend::create_subtensor(ITensorHandle *parent, TensorShape shape, Coordinates coords, bool extend_parent)
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000120{
121 if(parent == nullptr)
122 {
123 return nullptr;
124 }
125
Georgios Pinitasee33ea52018-03-08 16:01:29 +0000126 return support::cpp14::make_unique<NESubTensorHandle>(parent, shape, coords, extend_parent);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000127}
128
129std::unique_ptr<arm_compute::IFunction> NEDeviceBackend::configure_node(INode &node, GraphContext &ctx)
130{
131 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Configuring NEON node with ID : " << node.id() << std::endl);
132 ARM_COMPUTE_ERROR_ON(node.assigned_target() != Target::NEON);
133
134 // Configure node
135 return NEFunctionFactory::create(&node, ctx);
136}
137
Georgios Pinitas28705162018-03-21 20:10:53 +0000138arm_compute::Status NEDeviceBackend::validate_node(INode &node)
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000139{
140 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating NEON node with ID : " << node.id() << std::endl);
Georgios Pinitas28705162018-03-21 20:10:53 +0000141 ARM_COMPUTE_ERROR_ON(node.assigned_target() != Target::NEON);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000142
Georgios Pinitas28705162018-03-21 20:10:53 +0000143 return NENodeValidator::validate(&node);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000144}
145
146std::shared_ptr<arm_compute::IMemoryManager> NEDeviceBackend::create_memory_manager(MemoryManagerAffinity affinity)
147{
148 std::shared_ptr<ILifetimeManager> lifetime_mgr = nullptr;
149 if(affinity == MemoryManagerAffinity::Buffer)
150 {
151 lifetime_mgr = std::make_shared<BlobLifetimeManager>();
152 }
153 else
154 {
155 lifetime_mgr = std::make_shared<OffsetLifetimeManager>();
156 }
157 auto pool_mgr = std::make_shared<PoolManager>();
158 auto mm = std::make_shared<MemoryManagerOnDemand>(lifetime_mgr, pool_mgr);
159
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000160 return mm;
161}
162} // namespace backends
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100163} // namespace graph
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100164} // namespace arm_compute