27 return CloneBase<SwitchLayer>(graph,
GetName());
34 BOOST_ASSERT_MSG(
GetNumOutputSlots() == 2,
"SwitchLayer: The layer should return 2 outputs.");
41 BOOST_ASSERT(inferredShapes.size() == 2);
43 ConditionalThrowIfNotEqual<LayerValidationException>(
44 "SwitchLayer: TensorShape set on OutputSlot[0] does not match the inferred shape.",
48 ConditionalThrowIfNotEqual<LayerValidationException>(
49 "SwitchLayer: TensorShape set on OutputSlot[0] does not match the inferred shape.",
const TensorShape & GetShape() const
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)
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the Switch type.
Copyright (c) 2020 ARM Limited.
unsigned int GetNumOutputSlots() const override
Returns the number of connectable output slots.
SwitchLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
SwitchLayer(const char *name)
Constructor to create a SwitchLayer.
virtual void VisitSwitchLayer(const IConnectableLayer *layer, const char *name=nullptr)=0
Function a switch layer should call back to when its Accept(ILayerVisitor&) function is invoked...
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 ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of SwitchLayer.
WorkloadInfo PrepInfoAndDesc(QueueDescriptor &descriptor) const
Helper function to reduce duplication in *LayerCreateWorkload.
void Accept(ILayerVisitor &visitor) const override
Apply a visitor to this layer.
virtual std::unique_ptr< IWorkload > CreateSwitch(const SwitchQueueDescriptor &descriptor, const WorkloadInfo &Info) const
This layer calculates both true and false outputs for input.
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