text
stringlengths
1
24.5M
// // Copyright © 2017-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "DepthwiseConvolution2dLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnnUtils/DataLayoutIndexed.hpp> #include <armnn/backends/TensorHandle.hpp> #include <arm...
// // Copyright © 2017,2022 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { class ScopedTensorHandle; /// This layer represents a depthwise convolution 2d operation. class DepthwiseConvolution2dLayer : public LayerW...
// // Copyright © 2017,2019-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "DequantizeLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { DequantizeLayer::DequantizeLayer...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "Layer.hpp" namespace armnn { /// This layer dequantizes the input tensor. class DequantizeLayer : public Layer { public: /// Makes a workload for the Dequantize type. /// @param [i...
// // Copyright © 2017-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "DetectionPostProcessLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/TensorHandle.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/b...
// // Copyright © 2017-2023 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { class ScopedTensorHandle; /// This layer represents a detection postprocess operator. class DetectionPostProcessLayer : public LayerWithPa...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "DivisionLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { DivisionLay...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "ElementwiseBaseLayer.hpp" namespace armnn { /// This layer represents a division operation. class DivisionLayer : public ElementwiseBaseLayer { public: /// Makes a workload for the Di...
// // Copyright © 2017-2018,2020-2021,2023-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "ElementwiseBaseLayer.hpp" #include "InternalTypes.hpp" #include "armnn/Exceptions.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/utility/Assert.hpp> namespace armnn { El...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include <Layer.hpp> namespace armnn { /// NOTE: this is an abstract class to encapsulate the element wise operations, it does not implement: /// std::unique_ptr<IWorkload> Layer::CreateWorkload(co...
// // Copyright © 2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "ElementwiseBinaryLayer.hpp" #include "LayerCloneBase.hpp" namespace armnn { ElementwiseBinaryLayer::ElementwiseBinaryLayer(const ElementwiseBinaryDescriptor& param, const char* name) : LayerWithPa...
// // Copyright © 2023 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { /// This layer represents a elementwiseBinary operation. class ElementwiseBinaryLayer : public LayerWithParameters<ElementwiseBinaryDescriptor> ...
// // Copyright © 2020-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "ElementwiseUnaryLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> #include <algorithm> namespace armnn { Elementw...
// // Copyright © 2019 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { /// This layer represents a elementwiseUnary operation. class ElementwiseUnaryLayer : public LayerWithParameters<ElementwiseUnaryDescriptor> { p...
// // Copyright © 2017-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "FakeQuantizationLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { ...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { /// This layer represents a fake quantization operation. class FakeQuantizationLayer : public LayerWithParameters<FakeQuantizationDescriptor> { p...
// // Copyright © 2020-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "FillLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { FillLayer::...
// // Copyright © 2020 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { /// This layer represents a fill operation. class FillLayer : public LayerWithParameters<FillDescriptor> { public: /// Makes a workload for t...
// // Copyright © 2017-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "FloorLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { FloorLayer...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include <Layer.hpp> namespace armnn { /// This layer represents a floor operation. class FloorLayer : public Layer { public: /// Makes a workload for the Floor type. /// @param [in] graph T...
// // Copyright © 2017-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "FullyConnectedLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/TensorHandle.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends...
// // Copyright © 2017,2022 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { class ScopedTensorHandle; /// This layer represents a fully connected operation. class FullyConnectedLayer : public LayerWithParameters<Ful...
// // Copyright © 2023 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "FusedLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/backends/Workload.hpp> #include <armnn/TypesUtils.hpp> namespace armnn { FusedLayer::FusedLayer(const FusedDescriptor& param, const char* ...
// // Copyright © 2023 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" #include <armnn/backends/WorkloadFactory.hpp> #include <armnn/Descriptors.hpp> #include <memory> #include <functional> namespace armnn { class FusedLayer : publ...
// // Copyright © 2017,2019-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "GatherLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { Gath...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { /// This layer represents a Gather operator. class GatherLayer : public LayerWithParameters<GatherDescriptor> { public: /// Makes a workload...
// // Copyright © 2022-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "GatherNdLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { GatherN...
// // Copyright © 2022 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "Layer.hpp" namespace armnn { /// This layer represents a GatherNd operator. class GatherNdLayer : public Layer { public: /// Makes a workload for the Gather type. /// @param [in] ...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "InputLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { InputLayer::InputLayer(LayerBindingId id, const...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include <Layer.hpp> namespace armnn { /// A layer user-provided data can be bound to (e.g. inputs, outputs). class InputLayer : public BindableLayer { public: /// Makes a workload for the Input...
// // Copyright © 2019-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "InstanceNormalizationLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace arm...
// // Copyright © 2019 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { /// This layer represents an instance normalization operation. class InstanceNormalizationLayer : public LayerWithParameters<InstanceNormalizatio...
// // Copyright © 2017-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "L2NormalizationLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { ...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { /// This layer represents a L2 normalization operation. class L2NormalizationLayer : public LayerWithParameters<L2NormalizationDescriptor> { publ...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include <Layer.hpp> #include <Graph.hpp> namespace armnn { template <typename LayerType, typename ... Params> LayerType* Layer::CloneBase(Graph& graph, Params&& ... params) const { LayerType* c...
// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "ConstantLayer.hpp" #include <Layer.hpp> namespace armnn { template <typename Parameters> class LayerWithParameters : public Layer { public: using DescriptorType = Parameters; const Parameters& Get...
// // Copyright © 2020-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "LogicalBinaryLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> #include <algorithm> namespace armnn { LogicalBina...
// // Copyright © 2020 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { /// This layer represents a Logical Binary operation. class LogicalBinaryLayer : public LayerWithParameters<LogicalBinaryDescriptor> { public: ...
// // Copyright © 2019-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "LogSoftmaxLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { Log...
// // Copyright © 2019 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { /// This layer represents a log softmax operation. class LogSoftmaxLayer : public LayerWithParameters<LogSoftmaxDescriptor> { public: /// Ma...
// // Copyright © 2017-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "LstmLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/LstmParams.hpp> #include <armnn/TypesUtils.hpp> #include <armnn/backends/TensorHandle.hpp> #include <armnn/backends/WorkloadFactory.hpp>...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" #include "LstmParameters.hpp" namespace armnn { class ScopedTensorHandle; /// This layer represents a LSTM operation. class LstmLayer : public LayerWithParameters...
// // Copyright © 2021 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { class ScopedTensorHandle; struct LstmOptLayerNormParameters { /// A unique pointer to represent 1D weights tensor with dimensions [num_units...
// // Copyright © 2020,2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "MapLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> #include <backendsCommon/MapWork...
// // Copyright © 2020 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include <Layer.hpp> namespace armnn { /// This layer represents a memory copy operation. class MapLayer : public Layer { public: /// Makes a workload for the Map type. /// @param [in] graph...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "MaximumLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { MaximumLayer::MaximumLayer(const char* name)...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "ElementwiseBaseLayer.hpp" namespace armnn { /// This layer represents a maximum operation. class MaximumLayer : public ElementwiseBaseLayer { public: /// Makes a workload for the Maxi...
// // Copyright © 2017-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "MeanLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/utility/NumericCast.hpp> #include <armnn/backends/TensorHandle.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends...
// // Copyright © 2017-2023 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { /// This layer represents a mean operation. class MeanLayer : public LayerWithParameters<MeanDescriptor> { public: /// Makes a workload...
// // Copyright © 2017-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "MemCopyLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> #include <armnn/backends/Mem...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include <Layer.hpp> namespace armnn { /// This layer represents a memory copy operation. class MemCopyLayer : public Layer { public: /// Makes a workload for the MemCopy type. /// @param [i...
// // Copyright © 2019-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "MemImportLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> #include <backendsCommon/M...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include <Layer.hpp> namespace armnn { /// This layer represents a memory import operation. class MemImportLayer : public Layer { public: /// Makes a workload for the MemImport type. /// @pa...
// // Copyright © 2019-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "MergeLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { MergeLayer::MergeLayer(const char* name) ...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "Layer.hpp" namespace armnn { /// This layer dequantizes the input tensor. class MergeLayer : public Layer { public: /// Makes a workload for the Merge type. /// @param [in] graph T...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "ConcatLayer.hpp" using MergerLayer = ConcatLayer;
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "MinimumLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { MinimumLayer...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "ElementwiseBaseLayer.hpp" namespace armnn { /// This layer represents a minimum operation. class MinimumLayer : public ElementwiseBaseLayer { public: /// Makes a workload for the Mini...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "MultiplicationLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { Multi...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "ElementwiseBaseLayer.hpp" namespace armnn { /// This layer represents a multiplication operation. class MultiplicationLayer : public ElementwiseBaseLayer { public: /// Makes a workloa...
// // Copyright © 2017-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "NormalizationLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { No...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { /// This layer represents a normalization operation. class NormalizationLayer : public LayerWithParameters<NormalizationDescriptor> { public: ...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "OutputLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/utility/IgnoreUnused.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { Outp...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include <Layer.hpp> namespace armnn { /// A layer user-provided data can be bound to (e.g. inputs, outputs). class OutputLayer : public BindableLayer { public: /// Returns nullptr for Output ty...
// // Copyright © 2017-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "PadLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/backends/TensorHandle.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> #include <cstring> ...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { /// This layer represents a pad operation. class PadLayer : public LayerWithParameters<PadDescriptor> { public: /// Makes a workload for the...
// // Copyright © 2017-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "PermuteLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnnUtils/Permute.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFact...
// // Copyright © 2017,2022 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" #include <armnn/utility/PolymorphicDowncast.hpp> namespace armnn { /// This layer represents a permutation operation. class PermuteLayer : public LayerWithPa...
// // Copyright © 2017-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "Pooling2dLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnnUtils/DataLayoutIndexed.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { /// This layer represents a pooling 2d operation. class Pooling2dLayer : public LayerWithParameters<Pooling2dDescriptor> { public: /// Makes ...
// // Copyright © 2021-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "Pooling3dLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnnUtils/DataLayoutIndexed.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/...
// // Copyright © 2021 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { /// This layer represents a pooling 3d operation. class Pooling3dLayer : public LayerWithParameters<Pooling3dDescriptor> { public: /// Makes ...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "PreCompiledLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/backends/Workload.hpp> #include <armnn/TypesUtils.hpp> namespace armnn { PreCompiledLayer::PreCompiledLayer(const PreCompiledDescr...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" #include <armnn/backends/WorkloadFactory.hpp> #include <armnn/Descriptors.hpp> #include <memory> #include <functional> namespace armnn { using PreCompiledObject...
// // Copyright © 2017,2019-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "PreluLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/utility/NumericCast.hpp> #include <armnn/backends/TensorHandle.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/b...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { // This layer represents a PReLU activation operation. class PreluLayer : public Layer { public: /// Makes a workload for the PReLU type. ...
// // Copyright © 2020-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "QLstmLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/LstmParams.hpp> #include <armnn/TypesUtils.hpp> #include <armnn/backends/TensorHandle.hpp> #include <armnn/backends/WorkloadFactory.hpp...
// // Copyright © 2020 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { class ScopedTensorHandle; struct QLstmBasicParameters { /// A unique pointer to represent 2D weights tensor with dimensions [num_units, inpu...
// // Copyright © 2017,2019-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "QuantizedLstmLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/QuantizedLstmParams.hpp> #include <armnn/TypesUtils.hpp> #include <armnn/backends/TensorHandle.hpp> #include <armnn/backen...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include <Layer.hpp> namespace armnn { class ScopedTensorHandle; struct QuantizedLstmParameters { /// A unique pointer to represent 2D weights tensor with dimensions [outputSize, inputSize] (QA...
// // Copyright © 2019-2023 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "QuantizeLayer.hpp" #include "LayerCloneBase.hpp" namespace armnn { QuantizeLayer::QuantizeLayer(const char* name) : Layer(1, 1, LayerType::Quantize, name) {} std::unique_ptr<IWorkload> QuantizeL...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include <Layer.hpp> namespace armnn { //Forward class IWorkload; class IWorkloadFactory; class QuantizeLayer : public Layer { public: virtual std::unique_ptr<IWorkload> CreateWorkload(const I...
// // Copyright © 2020-2023 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "RankLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { RankLayer::RankLayer(const char* name) ...
// // Copyright © 2020-2023 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include <Layer.hpp> namespace armnn { class RankLayer : public Layer { public: /// Makes a workload for the Rank type. /// @param [in] factory The workload factory which will create t...
// // Copyright © 2020 Samsung Electronics Co Ltd and Contributors. All rights reserved. // Copyright © 2023-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "ReduceLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/Workl...
// // Copyright © 2020 Samsung Electronics Co Ltd and Contributors. All rights reserved. // Copyright © 2023 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { /// This layer represents a reduction operation. class Red...
// // Copyright © 2017-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "ReshapeLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/utility/IgnoreUnused.hpp> #include <armnn/TypesUtils.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/Workloa...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" #include <armnn/utility/PolymorphicDowncast.hpp> namespace armnn { /// This layer represents a reshape operation. class ReshapeLayer : public LayerWithParameters<...
// // Copyright © 2019-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "ResizeLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnnUtils/DataLayoutIndexed.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/Work...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { /// This layer represents a resize operation. class ResizeLayer : public LayerWithParameters<ResizeDescriptor> { public: /// Makes a workloa...
// // Copyright © 2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "ReverseV2Layer.hpp" #include <armnn/backends/WorkloadFactory.hpp> #include "layers/LayerCloneBase.hpp" namespace armnn { ReverseV2Layer::ReverseV2Layer(const char* name) : Layer(2, 1, LayerType::Re...
// // Copyright © 2023 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { /// This layer represents a ReverseV2 operation. class ReverseV2Layer : public Layer { public: /// Makes a workload for ...
// // Copyright © 2017-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "RsqrtLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { RsqrtLaye...
// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include <Layer.hpp> namespace armnn { class RsqrtLayer : public Layer { public: /// Makes a workload for the Rsqrt type. /// @param [in] graph The graph where this layer can be found. ...
// // Copyright © 2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "ScatterNdLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/WorkloadFactory.hpp> namespace armnn { ScatterNdLa...
// // Copyright © 2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { /// This layer represents a ScatterNd operator. class ScatterNdLayer : public LayerWithParameters<ScatterNdDescriptor> { public: /// Makes a...
// // Copyright © 2021-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "ShapeLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/utility/NumericCast.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/Workload...
// // Copyright © 2021 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { class ShapeLayer : public Layer { public: /// Makes a workload for the Shape type. /// @param [in] graph The graph where this layer can ...
// // Copyright © 2019-2024 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "SliceLayer.hpp" #include "LayerCloneBase.hpp" #include <armnn/TypesUtils.hpp> #include <armnn/utility/NumericCast.hpp> #include <armnn/backends/WorkloadData.hpp> #include <armnn/backends/Workload...
// // Copyright © 2019 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "LayerWithParameters.hpp" namespace armnn { class SliceLayer : public LayerWithParameters<SliceDescriptor> { public: /// Makes a workload for the Slice type. /// @param [in] graph ...