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 --- ...rmnn_1_1_graph_1_1_output_layers_accessor.xhtml | 254 +++++++++++++++++++++ 1 file changed, 254 insertions(+) create mode 100644 21.02/structarmnn_1_1_graph_1_1_output_layers_accessor.xhtml (limited to '21.02/structarmnn_1_1_graph_1_1_output_layers_accessor.xhtml') diff --git a/21.02/structarmnn_1_1_graph_1_1_output_layers_accessor.xhtml b/21.02/structarmnn_1_1_graph_1_1_output_layers_accessor.xhtml new file mode 100644 index 0000000000..3bbe0ca998 --- /dev/null +++ b/21.02/structarmnn_1_1_graph_1_1_output_layers_accessor.xhtml @@ -0,0 +1,254 @@ + + + + + + + + + + + + + +ArmNN: Graph::OutputLayersAccessor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
Graph::OutputLayersAccessor Struct Reference
+
+
+ +

Wrapper class returned by Graph::GetOutputLayers() + More...

+ +

#include <Graph.hpp>

+ + + + + + + + +

+Public Member Functions

 OutputLayersAccessor (const Graph &graph)
 
ConstIteratorOutputs begin () const
 
ConstIteratorOutputs end () const
 
+ + + +

+Public Attributes

const Graphm_Graph
 
+

Detailed Description

+

Wrapper class returned by Graph::GetOutputLayers()

+ +

Definition at line 77 of file Graph.hpp.

+

Constructor & Destructor Documentation

+ +

◆ OutputLayersAccessor()

+ +
+
+ + + + + +
+ + + + + + + + +
OutputLayersAccessor (const Graphgraph)
+
+inlineexplicit
+
+ +

Definition at line 79 of file Graph.hpp.

+
79 : m_Graph(graph) {}
+
+
+
+

Member Function Documentation

+ +

◆ begin()

+ +
+
+ + + + + +
+ + + + + + + +
ConstIteratorOutputs begin () const
+
+inline
+
+ +

Definition at line 81 of file Graph.hpp.

+ +

References Graph::GetNumOutputs(), and Graph::InputLayersAccessor::m_Graph.

+
82  {
83  return { std::prev(m_Graph.m_Layers.end(), static_cast<IteratorDifference>(m_Graph.GetNumOutputs())),
84  &(PtrCast<const OutputLayer>) };
85  }
+
size_t GetNumOutputs() const
Definition: Graph.hpp:181
+
Iterator::difference_type IteratorDifference
Definition: Graph.hpp:51
+
+
+
+ +

◆ end()

+ +
+
+ + + + + +
+ + + + + + + +
ConstIteratorOutputs end () const
+
+inline
+
+ +

Definition at line 87 of file Graph.hpp.

+ +

References Graph::InputLayersAccessor::m_Graph.

+
88  {
89  return { m_Graph.m_Layers.end(), &(PtrCast<const OutputLayer>) };
90  }
+
+
+
+

Member Data Documentation

+ +

◆ m_Graph

+ +
+
+ + + + +
const Graph& m_Graph
+
+ +

Definition at line 92 of file Graph.hpp.

+ +
+
+
The documentation for this struct was generated from the following file: +
+
+ + + + -- cgit v1.2.1