From d5d43d82c0137e08553e44345c609cdd1a7931c7 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Fri, 17 Jun 2022 13:24:58 +0100 Subject: Update Doxygen for 22.05 patch release * Pooling3D added to tfLite delegate * Available in tag 22.05.01 Signed-off-by: Nikhil Raj Change-Id: I8d605bba4e87d30baa2c6d7b338c78a4400dc021 --- ...lassarmnn_1_1_test_constant_layer_visitor.xhtml | 290 +++++++++++++++++++++ 1 file changed, 290 insertions(+) create mode 100644 22.05.01/classarmnn_1_1_test_constant_layer_visitor.xhtml (limited to '22.05.01/classarmnn_1_1_test_constant_layer_visitor.xhtml') diff --git a/22.05.01/classarmnn_1_1_test_constant_layer_visitor.xhtml b/22.05.01/classarmnn_1_1_test_constant_layer_visitor.xhtml new file mode 100644 index 0000000000..b32b8e28f8 --- /dev/null +++ b/22.05.01/classarmnn_1_1_test_constant_layer_visitor.xhtml @@ -0,0 +1,290 @@ + + + + + + + + + + + + + +ArmNN: TestConstantLayerVisitor Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.05.01 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
TestConstantLayerVisitor Class Reference
+
+
+ +

#include <ConstTensorLayerVisitor.hpp>

+
+Inheritance diagram for TestConstantLayerVisitor:
+
+
+ + +TestLayerVisitor +StrategyBase< NoThrowStrategy > +IStrategy + +
+ + + + + + + + + + + + +

+Public Member Functions

 TestConstantLayerVisitor (const ConstTensor &input, const char *name=nullptr)
 
void ExecuteStrategy (const armnn::IConnectableLayer *layer, const armnn::BaseDescriptor &descriptor, const std::vector< armnn::ConstTensor > &constants, const char *name, const armnn::LayerBindingId id=0) override
 
- Public Member Functions inherited from TestLayerVisitor
 TestLayerVisitor (const char *name)
 
- Public Member Functions inherited from IStrategy
virtual void FinishStrategy ()
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Protected Member Functions inherited from TestLayerVisitor
virtual ~TestLayerVisitor ()
 
void CheckLayerName (const char *name)
 
void CheckLayerPointer (const IConnectableLayer *layer)
 
void CheckConstTensors (const ConstTensor &expected, const ConstTensor &actual)
 
void CheckConstTensors (const ConstTensor &expected, const ConstTensorHandle &actual)
 
void CheckConstTensorPtrs (const std::string &name, const ConstTensor *expected, const ConstTensor *actual)
 
void CheckConstTensorPtrs (const std::string &name, const ConstTensor *expected, const std::shared_ptr< ConstTensorHandle > actual)
 
void CheckOptionalConstTensors (const Optional< ConstTensor > &expected, const Optional< ConstTensor > &actual)
 
- Protected Member Functions inherited from StrategyBase< NoThrowStrategy >
virtual ~StrategyBase ()
 
- Protected Member Functions inherited from IStrategy
 IStrategy ()
 
virtual ~IStrategy ()
 
- Protected Attributes inherited from StrategyBase< NoThrowStrategy >
NoThrowStrategy m_DefaultStrategy
 
+

Detailed Description

+
+

Definition at line 197 of file ConstTensorLayerVisitor.hpp.

+

Constructor & Destructor Documentation

+ +

◆ TestConstantLayerVisitor()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
TestConstantLayerVisitor (const ConstTensorinput,
const char * name = nullptr 
)
+
+inlineexplicit
+
+ +

Definition at line 200 of file ConstTensorLayerVisitor.hpp.

+
202  : TestLayerVisitor(name)
203  , m_Input(input)
204  {}
TestLayerVisitor(const char *name)
+
+
+
+

Member Function Documentation

+ +

◆ ExecuteStrategy()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
void ExecuteStrategy (const armnn::IConnectableLayerlayer,
const armnn::BaseDescriptordescriptor,
const std::vector< armnn::ConstTensor > & constants,
const char * name,
const armnn::LayerBindingId id = 0 
)
+
+inlineoverridevirtual
+
+ +

Reimplemented from StrategyBase< NoThrowStrategy >.

+ +

Definition at line 206 of file ConstTensorLayerVisitor.hpp.

+ +

References NoThrowStrategy::Apply(), TestLayerVisitor::CheckConstTensors(), TestLayerVisitor::CheckLayerName(), TestLayerVisitor::CheckLayerPointer(), armnn::Constant, armnn::GetLayerTypeAsCString(), IConnectableLayer::GetType(), armnn::IgnoreUnused(), and StrategyBase< NoThrowStrategy >::m_DefaultStrategy.

+
211  {
212  armnn::IgnoreUnused(descriptor, constants, id);
213  switch (layer->GetType())
214  {
216  {
217  CheckLayerPointer(layer);
218  CheckLayerName(name);
219  CheckConstTensors(m_Input, constants[0]);
220  break;
221  }
222  default:
223  {
225  }
226  }
227  }
void CheckLayerName(const char *name)
+
void CheckLayerPointer(const IConnectableLayer *layer)
+
void IgnoreUnused(Ts &&...)
+
void CheckConstTensors(const ConstTensor &expected, const ConstTensor &actual)
+ +
void Apply(const std::string &)
+
virtual LayerType GetType() const =0
Returns the armnn::LayerType of this layer.
+ +
const char * GetLayerTypeAsCString(LayerType type)
+
+
+
+
The documentation for this class was generated from the following file: +
+
+ + + + -- cgit v1.2.1