37 BOOST_ASSERT(inferredShapes.size() == 1);
39 ConditionalThrowIfNotEqual<LayerValidationException>(
40 "ActivationLayer: TensorShape set on OutputSlot[0] does not match the inferred shape.",
ActivationDescriptor m_Param
The parameters for the layer (not including tensor-valued weights etc.).
const ActivationDescriptor & GetParameters() const
const TensorShape & GetShape() const
virtual void VisitActivationLayer(const IConnectableLayer *layer, const ActivationDescriptor &activationDescriptor, const char *name=nullptr)=0
Function that an activation layer should call back to when its Accept(ILayerVisitor&) function is inv...
std::vector< TensorShape > InferOutputShapes(const std::vector< TensorShape > &inputShapes) const override
Infer the shape of the output(s) based on the provided input shape(s)
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of ActivationLayer.
This layer represents an activation operation with the specified activation function.
Copyright (c) 2020 ARM Limited.
virtual std::unique_ptr< IWorkload > CreateActivation(const ActivationQueueDescriptor &descriptor, const WorkloadInfo &info) const
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
void Accept(ILayerVisitor &visitor) const override
Apply a visitor to this layer.
float Activation(float in, ActivationFunction function, float a, float b)
ActivationLayer(const ActivationDescriptor ¶m, const char *name)
Constructor to create an ActivationLayer.
An ActivationDescriptor for the ActivationLayer.
ActivationLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
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
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the Activation type.