blob: 87ecdfe1ba691ca587a15fcc495452d5cf0ba3cf [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
48std::unique_ptr<ITensorHandle> ClTensorHandleFactory::CreateTensorHandle(const TensorInfo& tensorInfo) const
49{
50 std::unique_ptr<ClTensorHandle> tensorHandle = std::make_unique<ClTensorHandle>(tensorInfo);
51 tensorHandle->SetMemoryGroup(m_MemoryManager->GetInterLayerMemoryGroup());
52
53 return tensorHandle;
54}
55
56std::unique_ptr<ITensorHandle> ClTensorHandleFactory::CreateTensorHandle(const TensorInfo& tensorInfo,
57 DataLayout dataLayout) const
58{
59 std::unique_ptr<ClTensorHandle> tensorHandle = std::make_unique<ClTensorHandle>(tensorInfo, dataLayout);
60 tensorHandle->SetMemoryGroup(m_MemoryManager->GetInterLayerMemoryGroup());
61
62 return tensorHandle;
63}
64
65const FactoryId& ClTensorHandleFactory::GetIdStatic()
66{
67 static const FactoryId s_Id(ClTensorHandleFactoryId());
68 return s_Id;
69}
70
Ferran Balaguerbfeb2712019-08-07 15:14:56 +010071const FactoryId& ClTensorHandleFactory::GetId() const
Jan Eilerse9f0f0f2019-08-16 10:28:37 +010072{
73 return GetIdStatic();
74}
75
76bool ClTensorHandleFactory::SupportsSubTensors() const
77{
78 return true;
79}
80
81MemorySourceFlags ClTensorHandleFactory::GetExportFlags() const
82{
83 return m_ExportFlags;
84}
85
86MemorySourceFlags ClTensorHandleFactory::GetImportFlags() const
87{
88 return m_ImportFlags;
89}
90
91} // namespace armnn