blob: 87f88dffdfa8fecb78cfcbbd3e35de56ce997508 [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"
40#include "arm_compute/runtime/MemoryManagerOnDemand.h"
41#include "arm_compute/runtime/OffsetLifetimeManager.h"
42#include "arm_compute/runtime/PoolManager.h"
Georgios Pinitas9a8c6722018-03-21 17:52:35 +000043#include "arm_compute/runtime/Scheduler.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000044
45#include "support/ToolchainSupport.h"
46
47namespace arm_compute
48{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010049namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000050{
51namespace backends
52{
53/** Register NEON backend */
54static detail::BackendRegistrar<NEDeviceBackend> NEDeviceBackend_registrar(Target::NEON);
55
56NEDeviceBackend::NEDeviceBackend()
57 : _allocator()
58{
59}
60
61void NEDeviceBackend::initialize_backend()
62{
63}
64
65void NEDeviceBackend::setup_backend_context(GraphContext &ctx)
66{
Georgios Pinitas9a8c6722018-03-21 17:52:35 +000067 // Set number of threads
68 Scheduler::get().set_num_threads(ctx.config().num_threads);
69
70 // Create function level memory manager
Georgios Pinitasd8734b52017-12-22 15:27:52 +000071 if(ctx.memory_management_ctx(Target::NEON) == nullptr)
72 {
73 MemoryManagerContext mm_ctx;
74 mm_ctx.target = Target::NEON;
75 mm_ctx.mm = create_memory_manager(MemoryManagerAffinity::Buffer);
76
77 ctx.insert_memory_management_ctx(std::move(mm_ctx));
78 }
79}
80
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010081bool NEDeviceBackend::is_backend_supported()
82{
83 return true;
84}
85
Georgios Pinitasd8734b52017-12-22 15:27:52 +000086std::unique_ptr<ITensorHandle> NEDeviceBackend::create_tensor(const Tensor &tensor)
87{
88 // Get tensor descriptor
89 const TensorDescriptor &tensor_desc = tensor.desc();
90 ARM_COMPUTE_ERROR_ON(tensor_desc.target != Target::NEON);
91
92 // Create backend tensor handle
93 TensorInfo info(tensor_desc.shape, 1, tensor_desc.data_type);
94 auto backend_tensor_handle = support::cpp14::make_unique<NETensorHandle>(info);
95
96 return std::move(backend_tensor_handle);
97}
98
Georgios Pinitasee33ea52018-03-08 16:01:29 +000099std::unique_ptr<ITensorHandle> NEDeviceBackend::create_subtensor(ITensorHandle *parent, TensorShape shape, Coordinates coords, bool extend_parent)
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000100{
101 if(parent == nullptr)
102 {
103 return nullptr;
104 }
105
Georgios Pinitasee33ea52018-03-08 16:01:29 +0000106 return support::cpp14::make_unique<NESubTensorHandle>(parent, shape, coords, extend_parent);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000107}
108
109std::unique_ptr<arm_compute::IFunction> NEDeviceBackend::configure_node(INode &node, GraphContext &ctx)
110{
111 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Configuring NEON node with ID : " << node.id() << std::endl);
112 ARM_COMPUTE_ERROR_ON(node.assigned_target() != Target::NEON);
113
114 // Configure node
115 return NEFunctionFactory::create(&node, ctx);
116}
117
Georgios Pinitas28705162018-03-21 20:10:53 +0000118arm_compute::Status NEDeviceBackend::validate_node(INode &node)
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000119{
120 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating NEON node with ID : " << node.id() << std::endl);
Georgios Pinitas28705162018-03-21 20:10:53 +0000121 ARM_COMPUTE_ERROR_ON(node.assigned_target() != Target::NEON);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000122
Georgios Pinitas28705162018-03-21 20:10:53 +0000123 return NENodeValidator::validate(&node);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000124}
125
126std::shared_ptr<arm_compute::IMemoryManager> NEDeviceBackend::create_memory_manager(MemoryManagerAffinity affinity)
127{
128 std::shared_ptr<ILifetimeManager> lifetime_mgr = nullptr;
129 if(affinity == MemoryManagerAffinity::Buffer)
130 {
131 lifetime_mgr = std::make_shared<BlobLifetimeManager>();
132 }
133 else
134 {
135 lifetime_mgr = std::make_shared<OffsetLifetimeManager>();
136 }
137 auto pool_mgr = std::make_shared<PoolManager>();
138 auto mm = std::make_shared<MemoryManagerOnDemand>(lifetime_mgr, pool_mgr);
139
140 mm->set_allocator(&_allocator);
141
142 return mm;
143}
144} // namespace backends
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100145} // namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000146} // namespace arm_compute