From 03c7ff3f6188240baaeaeb405a357a0c58195fec Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Tue, 22 Aug 2023 12:00:04 +0100 Subject: IVGCVSW-7702 Update Doxygen Docu for 23.08 Signed-off-by: Nikhil Raj Change-Id: I357a9f7e47614589327c1ac5d95b6224ff77103d --- latest/_switch_layer_8cpp_source.html | 211 ++++++++++++++++++++++++++++++++++ 1 file changed, 211 insertions(+) create mode 100644 latest/_switch_layer_8cpp_source.html (limited to 'latest/_switch_layer_8cpp_source.html') diff --git a/latest/_switch_layer_8cpp_source.html b/latest/_switch_layer_8cpp_source.html new file mode 100644 index 0000000000..1115306769 --- /dev/null +++ b/latest/_switch_layer_8cpp_source.html @@ -0,0 +1,211 @@ + + + + + + + + +Arm NN: src/armnn/layers/SwitchLayer.cpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
SwitchLayer.cpp
+
+
+Go to the documentation of this file.
1 //
+
2 // Copyright © 2019-2023 Arm Ltd and Contributors. All rights reserved.
+
3 // SPDX-License-Identifier: MIT
+
4 //
+
5 #include "SwitchLayer.hpp"
+
6 
+
7 #include "LayerCloneBase.hpp"
+
8 
+ + +
11 
+
12 namespace armnn
+
13 {
+
14 
+
15 SwitchLayer::SwitchLayer(const char* name)
+
16  : Layer(2, 2, LayerType::Switch, name)
+
17 {}
+
18 
+
19 std::unique_ptr<IWorkload> SwitchLayer::CreateWorkload(const IWorkloadFactory& factory) const
+
20 {
+
21  SwitchQueueDescriptor descriptor;
+
22  SetAdditionalInfo(descriptor);
+
23 
+
24  return factory.CreateWorkload(LayerType::Switch, descriptor, PrepInfoAndDesc(descriptor));
+
25 }
+
26 
+ +
28 {
+
29  return CloneBase<SwitchLayer>(graph, GetName());
+
30 }
+
31 
+ +
33 {
+ +
35 
+
36  const TensorShape& outputShape = GetOutputSlot(0).GetTensorInfo().GetShape();
+
37 
+ +
39 
+
40  ARMNN_ASSERT_MSG(GetNumOutputSlots() == 2, "SwitchLayer: The layer should return 2 outputs.");
+
41 
+
42  // Assuming first input is the Input and second input is the Constant
+
43  std::vector<TensorShape> inferredShapes = InferOutputShapes({
+ + +
46 
+
47  ARMNN_ASSERT(inferredShapes.size() == 2);
+
48 
+
49  ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "SwitchLayer");
+
50 
+ +
52  GetOutputSlot(1).GetTensorInfo().GetShape(), inferredShapes[1], m_ShapeInferenceMethod, "SwitchLayer", 1);
+
53 }
+
54 
+ +
56 {
+
57  strategy.ExecuteStrategy(this, GetParameters(), {}, GetName());
+
58 }
+
59 
+
60 } // namespace armnn
+
+
+
#define ARMNN_ASSERT(COND)
Definition: Assert.hpp:14
+
const TensorInfo & GetTensorInfo() const override
Definition: Layer.cpp:92
+ +
#define CHECK_LOCATION()
Definition: Exceptions.hpp:203
+
void ValidateAndCopyShape(const TensorShape &outputShape, const TensorShape &inferredShape, const ShapeInferenceMethod shapeInferenceMethod, const std::string &layerName, const unsigned int outputSlotIndex=0)
Definition: Layer.cpp:435
+
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Get the const output slot handle by slot index.
Definition: Layer.hpp:339
+
SwitchLayer(const char *name)
Constructor to create a SwitchLayer.
Definition: SwitchLayer.cpp:15
+
void ExecuteStrategy(IStrategy &strategy) const override
Apply a visitor to this layer.
Definition: SwitchLayer.cpp:55
+ +
#define ARMNN_ASSERT_MSG(COND, MSG)
Definition: Assert.hpp:15
+
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
Definition: Layer.hpp:337
+ +
const char * GetName() const override
Returns the name of the layer.
Definition: Layer.hpp:332
+ + +
const TensorInfo & GetTensorInfo() const override
Gets the TensorInfo for this InputSlot.
Definition: Layer.cpp:592
+
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of SwitchLayer.
Definition: SwitchLayer.cpp:32
+ +
WorkloadInfo PrepInfoAndDesc(QueueDescriptor &descriptor) const
Helper function to reduce duplication in *Layer::CreateWorkload.
Definition: Layer.hpp:409
+ +
unsigned int GetNumOutputSlots() const override
Returns the number of connectable output slots.
Definition: Layer.hpp:335
+
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Definition: Layer.cpp:504
+
const TensorInfo & GetTensorInfo(const ITensorHandle *tensorHandle)
float32 helpers
+
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the Switch type.
Definition: SwitchLayer.cpp:19
+
void SetAdditionalInfo(QueueDescriptor &descriptor) const
Definition: Layer.cpp:287
+
This layer calculates both true and false outputs for input.
Definition: SwitchLayer.hpp:13
+
virtual const BaseDescriptor & GetParameters() const override
If the layer has a descriptor return it.
Definition: Layer.hpp:378
+ + +
const TensorShape & GetShape() const
Definition: Tensor.hpp:191
+
Copyright (c) 2021 ARM Limited and Contributors.
+
SwitchLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
Definition: SwitchLayer.cpp:27
+
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)
Definition: Layer.cpp:410
+
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition: Layer.cpp:391
+
ShapeInferenceMethod m_ShapeInferenceMethod
Definition: Layer.hpp:441
+
LayerType
When adding a new layer, adapt also the LastLayer enum value in the enum class LayerType below.
Definition: Types.hpp:483
+ +
virtual std::unique_ptr< IWorkload > CreateWorkload(LayerType type, const QueueDescriptor &descriptor, const WorkloadInfo &info) const =0
Backends should implement their own CreateWorkload function with a switch statement.
+
virtual void ExecuteStrategy(const IConnectableLayer *layer, const armnn::BaseDescriptor &descriptor, const std::vector< armnn::ConstTensor > &constants, const char *name, const armnn::LayerBindingId id=0)=0
+ + + + + -- cgit v1.2.1