From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- ...nn_1_1optimizations_1_1_convert_constants.xhtml | 274 +++++++++++++++++++++ 1 file changed, 274 insertions(+) create mode 100644 21.02/classarmnn_1_1optimizations_1_1_convert_constants.xhtml (limited to '21.02/classarmnn_1_1optimizations_1_1_convert_constants.xhtml') diff --git a/21.02/classarmnn_1_1optimizations_1_1_convert_constants.xhtml b/21.02/classarmnn_1_1optimizations_1_1_convert_constants.xhtml new file mode 100644 index 0000000000..d1fceca8fc --- /dev/null +++ b/21.02/classarmnn_1_1optimizations_1_1_convert_constants.xhtml @@ -0,0 +1,274 @@ + + + + + + + + + + + + + +ArmNN: ConvertConstants< Converter, Predicate > Class Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
ConvertConstants< Converter, Predicate > Class Template Reference
+
+
+ +

#include <ConvertConstants.hpp>

+
+Inheritance diagram for ConvertConstants< Converter, Predicate >:
+
+
+ + +Optimization + +
+ + + + + + + + + + + + + + + +

+Public Member Functions

 ConvertConstants ()=default
 
 ConvertConstants (const ConvertConstants &)=default
 
virtual ~ConvertConstants ()=default
 
void Run (Graph &graph, Layer &layer) const override
 
- Public Member Functions inherited from Optimization
 Optimization ()=default
 
virtual ~Optimization ()=default
 
+

Detailed Description

+

template<typename Converter, typename Predicate>
+class armnn::optimizations::ConvertConstants< Converter, Predicate >

+ + +

Definition at line 109 of file ConvertConstants.hpp.

+

Constructor & Destructor Documentation

+ +

◆ ConvertConstants() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
ConvertConstants ()
+
+default
+
+ +
+
+ +

◆ ConvertConstants() [2/2]

+ +
+
+ + + + + +
+ + + + + + + + +
ConvertConstants (const ConvertConstants< Converter, Predicate > & )
+
+default
+
+ +
+
+ +

◆ ~ConvertConstants()

+ +
+
+ + + + + +
+ + + + + + + +
virtual ~ConvertConstants ()
+
+virtualdefault
+
+ +
+
+

Member Function Documentation

+ +

◆ Run()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
void Run (Graphgraph,
Layerlayer 
) const
+
+inlineoverridevirtual
+
+ +

Implements Optimization.

+ +

Definition at line 116 of file ConvertConstants.hpp.

+ +

References armnn::IgnoreUnused(), and Layer::OperateOnConstantTensors().

+
117  {
118  IgnoreUnused(graph);
119  if (Predicate::Test(layer))
120  {
121  layer.OperateOnConstantTensors(Converter::Func);
122  }
123  }
void IgnoreUnused(Ts &&...)
+
+
+
+
The documentation for this class was generated from the following file: +
+
+ + + + -- cgit v1.2.1