blob: 3d9908a1ace9fdc780114aff22dbbb3a664a441b [file] [log] [blame]
Jan Eilerse9f0f0f2019-08-16 10:28:37 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6
7#include "ClTensorHandleFactory.hpp"
8#include "ClTensorHandle.hpp"
9
10#include <arm_compute/runtime/CL/CLTensor.h>
11#include <arm_compute/core/Coordinates.h>
12#include <arm_compute/runtime/CL/CLSubTensor.h>
13
14#include <boost/polymorphic_cast.hpp>
15
16
17namespace armnn
18{
19
20using FactoryId = ITensorHandleFactory::FactoryId;
21
22std::unique_ptr<ITensorHandle> ClTensorHandleFactory::CreateSubTensorHandle(ITensorHandle& parent,
23 const TensorShape& subTensorShape,
24 const unsigned int* subTensorOrigin) const
25{
26 arm_compute::Coordinates coords;
27 arm_compute::TensorShape shape = armcomputetensorutils::BuildArmComputeTensorShape(subTensorShape);
28
29 coords.set_num_dimensions(subTensorShape.GetNumDimensions());
30 for (unsigned int i = 0; i < subTensorShape.GetNumDimensions(); ++i)
31 {
32 // Arm compute indexes tensor coords in reverse order.
33 unsigned int revertedIndex = subTensorShape.GetNumDimensions() - i - 1;
34 coords.set(i, boost::numeric_cast<int>(subTensorOrigin[revertedIndex]));
35 }
36
37 const arm_compute::TensorShape parentShape = armcomputetensorutils::BuildArmComputeTensorShape(
38 parent.GetShape());
39 if (!::arm_compute::error_on_invalid_subtensor(__func__, __FILE__, __LINE__, parentShape, coords, shape))
40 {
41 return nullptr;
42 }
43
44 return std::make_unique<ClSubTensorHandle>(
45 boost::polymorphic_downcast<IClTensorHandle *>(&parent), shape, coords);
46}
47
David Monahan3fb7e102019-08-20 11:25:29 +010048std::unique_ptr<ITensorHandle> ClTensorHandleFactory::CreateTensorHandle(const TensorInfo& tensorInfo,
49 const bool IsMemoryManaged) const
Jan Eilerse9f0f0f2019-08-16 10:28:37 +010050{
51 std::unique_ptr<ClTensorHandle> tensorHandle = std::make_unique<ClTensorHandle>(tensorInfo);
David Monahan3fb7e102019-08-20 11:25:29 +010052 if (IsMemoryManaged)
53 {
54 tensorHandle->SetMemoryGroup(m_MemoryManager->GetInterLayerMemoryGroup());
55 }
Jan Eilerse9f0f0f2019-08-16 10:28:37 +010056 return tensorHandle;
57}
58
59std::unique_ptr<ITensorHandle> ClTensorHandleFactory::CreateTensorHandle(const TensorInfo& tensorInfo,
David Monahan3fb7e102019-08-20 11:25:29 +010060 DataLayout dataLayout,
61 const bool IsMemoryManaged) const
Jan Eilerse9f0f0f2019-08-16 10:28:37 +010062{
63 std::unique_ptr<ClTensorHandle> tensorHandle = std::make_unique<ClTensorHandle>(tensorInfo, dataLayout);
David Monahan3fb7e102019-08-20 11:25:29 +010064 if (IsMemoryManaged)
65 {
66 tensorHandle->SetMemoryGroup(m_MemoryManager->GetInterLayerMemoryGroup());
67 }
Jan Eilerse9f0f0f2019-08-16 10:28:37 +010068 return tensorHandle;
69}
70
71const FactoryId& ClTensorHandleFactory::GetIdStatic()
72{
73 static const FactoryId s_Id(ClTensorHandleFactoryId());
74 return s_Id;
75}
76
Ferran Balaguerbfeb2712019-08-07 15:14:56 +010077const FactoryId& ClTensorHandleFactory::GetId() const
Jan Eilerse9f0f0f2019-08-16 10:28:37 +010078{
79 return GetIdStatic();
80}
81
82bool ClTensorHandleFactory::SupportsSubTensors() const
83{
84 return true;
85}
86
87MemorySourceFlags ClTensorHandleFactory::GetExportFlags() const
88{
89 return m_ExportFlags;
90}
91
92MemorySourceFlags ClTensorHandleFactory::GetImportFlags() const
93{
94 return m_ImportFlags;
95}
96
97} // namespace armnn