ArmNN
 20.08
StackLayer Class Reference

This layer represents a stack operation. More...

#include <StackLayer.hpp>

Inheritance diagram for StackLayer:
LayerWithParameters< StackDescriptor > Layer IConnectableLayer

Public Member Functions

virtual std::unique_ptr< IWorkloadCreateWorkload (const IWorkloadFactory &factory) const override
 Makes a workload for the Stack type. More...
 
StackLayerClone (Graph &graph) const override
 Creates a dynamically-allocated copy of this layer. More...
 
void ValidateTensorShapesFromInputs () override
 Check if the input tensor shape(s) will lead to a valid configuration of StackLayer. More...
 
std::vector< TensorShapeInferOutputShapes (const std::vector< TensorShape > &inputShapes) const override
 By default returns inputShapes if the number of inputs are equal to number of outputs, otherwise infers the output shapes from given input shapes and layer properties. More...
 
void Accept (ILayerVisitor &visitor) const override
 Apply a visitor to this layer. More...
 
- Public Member Functions inherited from LayerWithParameters< StackDescriptor >
const StackDescriptorGetParameters () const
 
void SerializeLayerParameters (ParameterStringifyFunction &fn) const override
 Helper to serialize the layer parameters to string (currently used in DotSerializer and company). More...
 
- Public Member Functions inherited from Layer
 Layer (unsigned int numInputSlots, unsigned int numOutputSlots, LayerType type, const char *name)
 
 Layer (unsigned int numInputSlots, unsigned int numOutputSlots, LayerType type, DataLayout layout, const char *name)
 
const std::string & GetNameStr () const
 
const OutputHandlerGetOutputHandler (unsigned int i=0) const
 
OutputHandlerGetOutputHandler (unsigned int i=0)
 
ShapeInferenceMethod GetShapeInferenceMethod () const
 
const std::vector< InputSlot > & GetInputSlots () const
 
const std::vector< OutputSlot > & GetOutputSlots () const
 
std::vector< InputSlot >::iterator BeginInputSlots ()
 
std::vector< InputSlot >::iterator EndInputSlots ()
 
std::vector< OutputSlot >::iterator BeginOutputSlots ()
 
std::vector< OutputSlot >::iterator EndOutputSlots ()
 
bool IsOutputUnconnected ()
 
void ResetPriority () const
 
LayerPriority GetPriority () const
 
LayerType GetType () const
 
DataType GetDataType () const
 
const BackendIdGetBackendId () const
 
void SetBackendId (const BackendId &id)
 
virtual void CreateTensorHandles (const TensorHandleFactoryRegistry &registry, const IWorkloadFactory &factory, const bool IsMemoryManaged=true)
 
void VerifyLayerConnections (unsigned int expectedConnections, const CheckLocation &location) const
 
virtual void ReleaseConstantData ()
 
template<typename Op >
void OperateOnConstantTensors (Op op)
 
const char * GetName () const override
 Returns the name of the layer. More...
 
unsigned int GetNumInputSlots () const override
 Returns the number of connectable input slots. More...
 
unsigned int GetNumOutputSlots () const override
 Returns the number of connectable output slots. More...
 
const InputSlotGetInputSlot (unsigned int index) const override
 Get a const input slot handle by slot index. More...
 
InputSlotGetInputSlot (unsigned int index) override
 Get the input slot handle by slot index. More...
 
const OutputSlotGetOutputSlot (unsigned int index=0) const override
 Get the const output slot handle by slot index. More...
 
OutputSlotGetOutputSlot (unsigned int index=0) override
 Get the output slot handle by slot index. More...
 
void SetGuid (LayerGuid guid)
 
LayerGuid GetGuid () const final
 Returns the unique id of the layer. More...
 
void AddRelatedLayerName (const std::string layerName)
 
const std::list< std::string > & GetRelatedLayerNames ()
 
virtual void Reparent (Graph &dest, std::list< Layer *>::const_iterator iterator)=0
 
void BackendSelectionHint (Optional< BackendId > backend) final
 Provide a hint for the optimizer as to which backend to prefer for this layer. More...
 
Optional< BackendIdGetBackendHint () const
 
void SetShapeInferenceMethod (ShapeInferenceMethod shapeInferenceMethod)
 

Protected Member Functions

 StackLayer (const StackDescriptor &param, const char *name)
 Constructor to create a StackLayer. More...
 
 ~StackLayer ()=default
 Default destructor. More...
 
- Protected Member Functions inherited from LayerWithParameters< StackDescriptor >
 LayerWithParameters (unsigned int numInputSlots, unsigned int numOutputSlots, LayerType type, const StackDescriptor &param, const char *name)
 
 ~LayerWithParameters ()=default
 
WorkloadInfo PrepInfoAndDesc (QueueDescriptor &descriptor) const
 Helper function to reduce duplication in *LayerCreateWorkload. More...
 
- Protected Member Functions inherited from Layer
virtual ~Layer ()=default
 
template<typename QueueDescriptor >
void CollectQueueDescriptorInputs (QueueDescriptor &descriptor, WorkloadInfo &info) const
 
template<typename QueueDescriptor >
void CollectQueueDescriptorOutputs (QueueDescriptor &descriptor, WorkloadInfo &info) const
 
void ValidateAndCopyShape (const TensorShape &outputShape, const TensorShape &inferredShape, const ShapeInferenceMethod shapeInferenceMethod, const std::string &layerName, const unsigned int outputSlotIndex=0)
 
void VerifyShapeInferenceType (const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
 
template<typename QueueDescriptor >
WorkloadInfo PrepInfoAndDesc (QueueDescriptor &descriptor) const
 Helper function to reduce duplication in *LayerCreateWorkload. More...
 
template<typename LayerType , typename ... Params>
LayerTypeCloneBase (Graph &graph, Params &&... params) const
 
virtual ConstantTensors GetConstantTensorsByRef ()
 
- Protected Member Functions inherited from IConnectableLayer
 ~IConnectableLayer ()
 Objects are not deletable via the handle. More...
 

Additional Inherited Members

- Public Types inherited from LayerWithParameters< StackDescriptor >
using DescriptorType = StackDescriptor
 
- Protected Types inherited from Layer
using ConstantTensors = std::vector< std::reference_wrapper< std::unique_ptr< ScopedCpuTensorHandle > >>
 
- Protected Attributes inherited from LayerWithParameters< StackDescriptor >
StackDescriptor m_Param
 The parameters for the layer (not including tensor-valued weights etc.). More...
 
- Protected Attributes inherited from Layer
std::vector< OutputHandlerm_OutputHandlers
 
ShapeInferenceMethod m_ShapeInferenceMethod
 

Detailed Description

This layer represents a stack operation.

Definition at line 13 of file StackLayer.hpp.

Constructor & Destructor Documentation

◆ StackLayer()

StackLayer ( const StackDescriptor param,
const char *  name 
)
protected

Constructor to create a StackLayer.

Parameters
[in]paramStackDescriptor to configure the stack operation.
[in]nameOptional name for the layer.

Definition at line 17 of file StackLayer.cpp.

18  : LayerWithParameters(param.m_NumInputs, 1, LayerType::Stack, param, name)
19 {
20 }
LayerWithParameters(unsigned int numInputSlots, unsigned int numOutputSlots, LayerType type, const StackDescriptor &param, const char *name)

◆ ~StackLayer()

~StackLayer ( )
protecteddefault

Default destructor.

Member Function Documentation

◆ Accept()

void Accept ( ILayerVisitor visitor) const
overridevirtual

Apply a visitor to this layer.

Implements IConnectableLayer.

Definition at line 96 of file StackLayer.cpp.

References Layer::GetName(), LayerWithParameters< StackDescriptor >::GetParameters(), and ILayerVisitor::VisitStackLayer().

97 {
98  visitor.VisitStackLayer(this, GetParameters(), GetName());
99 }
const char * GetName() const override
Returns the name of the layer.
Definition: Layer.hpp:307

◆ Clone()

StackLayer * Clone ( Graph graph) const
overridevirtual

Creates a dynamically-allocated copy of this layer.

Parameters
[in]graphThe graph into which this layer is being cloned.

Implements Layer.

Definition at line 28 of file StackLayer.cpp.

References Layer::GetName(), and LayerWithParameters< StackDescriptor >::m_Param.

29 {
30  return CloneBase<StackLayer>(graph, m_Param, GetName());
31 }
StackDescriptor m_Param
The parameters for the layer (not including tensor-valued weights etc.).
const char * GetName() const override
Returns the name of the layer.
Definition: Layer.hpp:307

◆ CreateWorkload()

std::unique_ptr< IWorkload > CreateWorkload ( const IWorkloadFactory factory) const
overridevirtual

Makes a workload for the Stack type.

Parameters
[in]graphThe graph where this layer can be found.
[in]factoryThe workload factory which will create the workload.
Returns
A pointer to the created workload, or nullptr if not created.

Implements Layer.

Definition at line 22 of file StackLayer.cpp.

References IWorkloadFactory::CreateStack(), and LayerWithParameters< StackDescriptor >::PrepInfoAndDesc().

23 {
24  StackQueueDescriptor descriptor;
25  return factory.CreateStack(descriptor, PrepInfoAndDesc(descriptor));
26 }
WorkloadInfo PrepInfoAndDesc(QueueDescriptor &descriptor) const
Helper function to reduce duplication in *LayerCreateWorkload.

◆ InferOutputShapes()

std::vector< TensorShape > InferOutputShapes ( const std::vector< TensorShape > &  inputShapes) const
overridevirtual

By default returns inputShapes if the number of inputs are equal to number of outputs, otherwise infers the output shapes from given input shapes and layer properties.

Parameters
[in]inputShapesThe input shapes layer has.
Returns
A vector to the inferred output shape.

Reimplemented from Layer.

Definition at line 33 of file StackLayer.cpp.

References ARMNN_ASSERT, TensorShape::GetNumDimensions(), armnn::IgnoreUnused(), StackDescriptor::m_Axis, StackDescriptor::m_InputShape, StackDescriptor::m_NumInputs, and LayerWithParameters< StackDescriptor >::m_Param.

Referenced by StackInferOutputShapeImpl(), and StackLayer::ValidateTensorShapesFromInputs().

34 {
35  IgnoreUnused(inputShapes);
36 
37  const TensorShape& inputShape = m_Param.m_InputShape;
38  const unsigned int inputNumDimensions = inputShape.GetNumDimensions();
39  const unsigned int axis = m_Param.m_Axis;
40 
41  ARMNN_ASSERT(axis <= inputNumDimensions);
42 
43  std::vector<unsigned int> dimensionSizes(inputNumDimensions + 1, 0);
44  for (unsigned int i = 0; i < axis; ++i)
45  {
46  dimensionSizes[i] = inputShape[i];
47  }
48 
49  dimensionSizes[axis] = m_Param.m_NumInputs;
50 
51  for (unsigned int i = axis + 1; i < inputNumDimensions + 1; ++i)
52  {
53  dimensionSizes[i] = inputShape[i-1];
54  }
55 
56  TensorShape targetShape = TensorShape(inputNumDimensions + 1, dimensionSizes.data());
57 
58  return std::vector<TensorShape>({ targetShape });
59 }
uint32_t m_Axis
0-based axis along which to stack the input tensors.
StackDescriptor m_Param
The parameters for the layer (not including tensor-valued weights etc.).
TensorShape m_InputShape
Required shape of all input tensors.
void IgnoreUnused(Ts &&...)
#define ARMNN_ASSERT(COND)
Definition: Assert.hpp:14
uint32_t m_NumInputs
Number of input tensors.
unsigned int GetNumDimensions() const
Function that returns the tensor rank.
Definition: Tensor.cpp:175

◆ ValidateTensorShapesFromInputs()

void ValidateTensorShapesFromInputs ( )
overridevirtual

Check if the input tensor shape(s) will lead to a valid configuration of StackLayer.

Parameters
[in]shapeInferenceMethodIndicates if output shape shall be overwritten or just validated.

Implements Layer.

Definition at line 61 of file StackLayer.cpp.

References ARMNN_ASSERT, CHECK_LOCATION, InputSlot::GetConnection(), Layer::GetInputSlot(), Layer::GetNumInputSlots(), Layer::GetOutputSlot(), TensorInfo::GetShape(), IOutputSlot::GetTensorInfo(), OutputSlot::GetTensorInfo(), StackLayer::InferOutputShapes(), StackDescriptor::m_InputShape, StackDescriptor::m_NumInputs, LayerWithParameters< StackDescriptor >::m_Param, Layer::m_ShapeInferenceMethod, Layer::ValidateAndCopyShape(), Layer::VerifyLayerConnections(), and Layer::VerifyShapeInferenceType().

62 {
63  // Validates Stack layer.
64  ConditionalThrowIfNotEqual<LayerValidationException>(
65  "StackLayer: Num Input Slots must match Num Inputs.",
68 
70 
71  const TensorShape& outputShape = GetOutputSlot(0).GetTensorInfo().GetShape();
72 
74 
75  // Constructs and validates input shapes
76  std::vector<TensorShape> inputShapes;
77  for (unsigned int i = 0; i < GetNumInputSlots(); ++i)
78  {
79  TensorShape inputShape = GetInputSlot(i).GetConnection()->GetTensorInfo().GetShape();
80  if (inputShape != m_Param.m_InputShape)
81  {
82  throw LayerValidationException("StackLayer: TensorShape set on InputSlot[" +
83  std::to_string(i) +
84  "] does not match defined input shape");
85  }
86  inputShapes.push_back(inputShape);
87  }
88 
89  auto inferredShapes = InferOutputShapes(inputShapes);
90 
91  ARMNN_ASSERT(inferredShapes.size() == 1);
92 
93  ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "StackLayer");
94 }
StackDescriptor m_Param
The parameters for the layer (not including tensor-valued weights etc.).
unsigned int GetNumInputSlots() const override
Returns the number of connectable input slots.
Definition: Layer.hpp:309
const TensorShape & GetShape() const
Definition: Tensor.hpp:187
std::vector< TensorShape > InferOutputShapes(const std::vector< TensorShape > &inputShapes) const override
By default returns inputShapes if the number of inputs are equal to number of outputs, otherwise infers the output shapes from given input shapes and layer properties.
Definition: StackLayer.cpp:33
TensorShape m_InputShape
Required shape of all input tensors.
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Definition: Layer.cpp:432
const IOutputSlot * GetConnection() const override
Definition: Layer.hpp:199
void ValidateAndCopyShape(const TensorShape &outputShape, const TensorShape &inferredShape, const ShapeInferenceMethod shapeInferenceMethod, const std::string &layerName, const unsigned int outputSlotIndex=0)
Definition: Layer.cpp:392
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition: Layer.cpp:344
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
Definition: Layer.hpp:312
#define ARMNN_ASSERT(COND)
Definition: Assert.hpp:14
#define CHECK_LOCATION()
Definition: Exceptions.hpp:197
uint32_t m_NumInputs
Number of input tensors.
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Get the const output slot handle by slot index.
Definition: Layer.hpp:314
virtual const TensorInfo & GetTensorInfo() const =0
const TensorInfo & GetTensorInfo() const override
Definition: Layer.cpp:63
ShapeInferenceMethod m_ShapeInferenceMethod
Definition: Layer.hpp:387

The documentation for this class was generated from the following files: