// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #include "ClTensorHandleFactory.hpp" #include "ClTensorHandle.hpp" #include #include #include #include namespace armnn { using FactoryId = ITensorHandleFactory::FactoryId; std::unique_ptr ClTensorHandleFactory::CreateSubTensorHandle(ITensorHandle& parent, const TensorShape& subTensorShape, const unsigned int* subTensorOrigin) const { arm_compute::Coordinates coords; arm_compute::TensorShape shape = armcomputetensorutils::BuildArmComputeTensorShape(subTensorShape); coords.set_num_dimensions(subTensorShape.GetNumDimensions()); for (unsigned int i = 0; i < subTensorShape.GetNumDimensions(); ++i) { // Arm compute indexes tensor coords in reverse order. unsigned int revertedIndex = subTensorShape.GetNumDimensions() - i - 1; coords.set(i, boost::numeric_cast(subTensorOrigin[revertedIndex])); } const arm_compute::TensorShape parentShape = armcomputetensorutils::BuildArmComputeTensorShape( parent.GetShape()); if (!::arm_compute::error_on_invalid_subtensor(__func__, __FILE__, __LINE__, parentShape, coords, shape)) { return nullptr; } return std::make_unique( boost::polymorphic_downcast(&parent), shape, coords); } std::unique_ptr ClTensorHandleFactory::CreateTensorHandle(const TensorInfo& tensorInfo) const { std::unique_ptr tensorHandle = std::make_unique(tensorInfo); tensorHandle->SetMemoryGroup(m_MemoryManager->GetInterLayerMemoryGroup()); return tensorHandle; } std::unique_ptr ClTensorHandleFactory::CreateTensorHandle(const TensorInfo& tensorInfo, DataLayout dataLayout) const { std::unique_ptr tensorHandle = std::make_unique(tensorInfo, dataLayout); tensorHandle->SetMemoryGroup(m_MemoryManager->GetInterLayerMemoryGroup()); return tensorHandle; } const FactoryId& ClTensorHandleFactory::GetIdStatic() { static const FactoryId s_Id(ClTensorHandleFactoryId()); return s_Id; } const FactoryId ClTensorHandleFactory::GetId() const { return GetIdStatic(); } bool ClTensorHandleFactory::SupportsSubTensors() const { return true; } MemorySourceFlags ClTensorHandleFactory::GetExportFlags() const { return m_ExportFlags; } MemorySourceFlags ClTensorHandleFactory::GetImportFlags() const { return m_ImportFlags; } } // namespace armnn