From 8d2ca734165a068478df7cffa46185680b05cd20 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Fri, 24 Feb 2023 10:28:19 +0000 Subject: Update Doxygen docu for 23.02 Signed-off-by: Nikhil Raj Change-Id: Ie6c19a27d50fefab2796b2b5875374e81f5bf971 --- ...rmnn_1_1_graph_1_1_output_layers_accessor.xhtml | 258 +++++++++++++++++++++ 1 file changed, 258 insertions(+) create mode 100644 23.02/structarmnn_1_1_graph_1_1_output_layers_accessor.xhtml (limited to '23.02/structarmnn_1_1_graph_1_1_output_layers_accessor.xhtml') diff --git a/23.02/structarmnn_1_1_graph_1_1_output_layers_accessor.xhtml b/23.02/structarmnn_1_1_graph_1_1_output_layers_accessor.xhtml new file mode 100644 index 0000000000..95aabe2c64 --- /dev/null +++ b/23.02/structarmnn_1_1_graph_1_1_output_layers_accessor.xhtml @@ -0,0 +1,258 @@ + + + + + + + + + + + + + +ArmNN: Graph::OutputLayersAccessor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.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 80 of file Graph.hpp.

+

Constructor & Destructor Documentation

+ +

◆ OutputLayersAccessor()

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

Definition at line 82 of file Graph.hpp.

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

Member Function Documentation

+ +

◆ begin()

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

Definition at line 84 of file Graph.hpp.

+ +

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

+ +

Referenced by LoadedNetwork::ImportOutputs().

+
85  {
86  return { std::prev(m_Graph.m_Layers.end(), static_cast<IteratorDifference>(m_Graph.GetNumOutputs())),
87  &(PtrCast<const OutputLayer>) };
88  }
+
size_t GetNumOutputs() const
Definition: Graph.hpp:188
+
Iterator::difference_type IteratorDifference
Definition: Graph.hpp:54
+
+
+
+ +

◆ end()

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

Definition at line 90 of file Graph.hpp.

+ +

References Graph::InputLayersAccessor::m_Graph.

+ +

Referenced by LoadedNetwork::ImportOutputs().

+
91  {
92  return { m_Graph.m_Layers.end(), &(PtrCast<const OutputLayer>) };
93  }
+
+
+
+

Member Data Documentation

+ +

◆ m_Graph

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

Definition at line 95 of file Graph.hpp.

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