From f4019872c1134c6fcc1d6993e5746f55c1e79208 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Tue, 8 Mar 2022 20:01:38 +0000 Subject: IVGCVSW-6819 Fix the directory structure and broken link to latest docu Signed-off-by: Nikhil Raj Change-Id: I05b559d15faf92c76ff536719693b361316be4f3 --- ...rmnn_1_1_graph_1_1_output_layers_accessor.xhtml | 258 +++++++++++++++++++++ 1 file changed, 258 insertions(+) create mode 100644 22.02/structarmnn_1_1_graph_1_1_output_layers_accessor.xhtml (limited to '22.02/structarmnn_1_1_graph_1_1_output_layers_accessor.xhtml') diff --git a/22.02/structarmnn_1_1_graph_1_1_output_layers_accessor.xhtml b/22.02/structarmnn_1_1_graph_1_1_output_layers_accessor.xhtml new file mode 100644 index 0000000000..65ecdb5191 --- /dev/null +++ b/22.02/structarmnn_1_1_graph_1_1_output_layers_accessor.xhtml @@ -0,0 +1,258 @@ + + + + + + + + + + + + + +ArmNN: Graph::OutputLayersAccessor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.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:186
+
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