41 BOOST_ASSERT(axis <= inputNumDimensions);
43 std::vector<unsigned int> dimensionSizes(inputNumDimensions + 1, 0);
44 for (
unsigned int i = 0; i < axis; ++i)
46 dimensionSizes[i] = inputShape[i];
51 for (
unsigned int i = axis + 1; i < inputNumDimensions + 1; ++i)
53 dimensionSizes[i] = inputShape[i-1];
58 return std::vector<TensorShape>({ targetShape });
64 ConditionalThrowIfNotEqual<LayerValidationException>(
65 "StackLayer: Num Input Slots must match Num Inputs.",
72 std::vector<TensorShape> inputShapes;
80 "] does not match defined input shape");
82 inputShapes.push_back(inputShape);
87 BOOST_ASSERT(inferredShapes.size() == 1);
89 ConditionalThrowIfNotEqual<LayerValidationException>(
90 "StackLayer: TensorShape set on OutputSlot[0] does not match the inferred shape.",
uint32_t m_Axis
0-based axis along which to stack the input tensors.
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of StackLayer.
StackDescriptor m_Param
The parameters for the layer (not including tensor-valued weights etc.).
const StackDescriptor & GetParameters() const
unsigned int GetNumInputSlots() const override
Returns the number of connectable input slots.
const TensorShape & GetShape() const
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.
TensorShape m_InputShape
Required shape of all input tensors.
virtual std::unique_ptr< IWorkload > CreateStack(const StackQueueDescriptor &descriptor, const WorkloadInfo &info) const
Copyright (c) 2020 ARM Limited.
void IgnoreUnused(Ts &&...)
void Accept(ILayerVisitor &visitor) const override
Apply a visitor to this layer.
virtual void VisitStackLayer(const IConnectableLayer *layer, const StackDescriptor &stackDescriptor, const char *name=nullptr)=0
Function a stack layer should call back to when its Accept(ILayerVisitor&) function is invoked...
void Stack(const StackQueueDescriptor &data, std::vector< std::unique_ptr< Decoder< float >>> &inputs, Encoder< float > &output)
A StackDescriptor for the StackLayer.
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
StackLayer(const StackDescriptor ¶m, const char *name)
Constructor to create a StackLayer.
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
StackLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
This layer represents a stack operation.
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the Stack type.
uint32_t m_NumInputs
Number of input tensors.
unsigned int GetNumDimensions() const
WorkloadInfo PrepInfoAndDesc(QueueDescriptor &descriptor) const
Helper function to reduce duplication in *LayerCreateWorkload.
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Get the const output slot handle by slot index.
virtual const TensorInfo & GetTensorInfo() const =0
const char * GetName() const override
Returns the name of the layer.
const TensorInfo & GetTensorInfo() const override