From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- 20.02/classarmnn_1_1_optimized_network.xhtml | 321 +++++++++++++++++++++++++++ 1 file changed, 321 insertions(+) create mode 100644 20.02/classarmnn_1_1_optimized_network.xhtml (limited to '20.02/classarmnn_1_1_optimized_network.xhtml') diff --git a/20.02/classarmnn_1_1_optimized_network.xhtml b/20.02/classarmnn_1_1_optimized_network.xhtml new file mode 100644 index 0000000000..395efb3110 --- /dev/null +++ b/20.02/classarmnn_1_1_optimized_network.xhtml @@ -0,0 +1,321 @@ + + + + + + + + + + + + + +ArmNN: OptimizedNetwork Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
OptimizedNetwork Class Referencefinal
+
+
+ +

#include <Network.hpp>

+
+Inheritance diagram for OptimizedNetwork:
+
+
+ + +IOptimizedNetwork + +
+ + + + + + + + + + + + + + +

+Public Member Functions

 OptimizedNetwork (std::unique_ptr< Graph > graph)
 
 ~OptimizedNetwork ()
 
Status PrintGraph () override
 
Status SerializeToDot (std::ostream &stream) const override
 
profiling::ProfilingGuid GetGuid () const final
 
GraphGetGraph ()
 
+ + + + + + + +

+Additional Inherited Members

- Static Public Member Functions inherited from IOptimizedNetwork
static void Destroy (IOptimizedNetwork *network)
 
- Protected Member Functions inherited from IOptimizedNetwork
 ~IOptimizedNetwork ()
 
+

Detailed Description

+
+

Definition at line 265 of file Network.hpp.

+

Constructor & Destructor Documentation

+ +

◆ OptimizedNetwork()

+ +
+
+ + + + + + + + +
OptimizedNetwork (std::unique_ptr< Graphgraph)
+
+ +

Definition at line 1682 of file Network.cpp.

+
1683  : m_Graph(std::move(graph)),
1684  m_Guid(profiling::ProfilingService::Instance().NextGuid())
1685 {
1686 }
static ProfilingService & Instance()
+
+
+
+ +

◆ ~OptimizedNetwork()

+ +
+
+ + + + + + + +
~OptimizedNetwork ()
+
+ +

Definition at line 1688 of file Network.cpp.

+
1689 {
1690 }
+
+
+

Member Function Documentation

+ +

◆ GetGraph()

+ +
+
+ + + + + +
+ + + + + + + +
Graph& GetGraph ()
+
+inline
+
+ +

Definition at line 276 of file Network.hpp.

+ +

Referenced by armnn::ApplyBackendOptimizations(), armnn::AssignBackends(), BOOST_AUTO_TEST_CASE(), and armnn::Optimize().

+
276 { return *m_Graph; }
+
+
+ +

◆ GetGuid()

+ +
+
+ + + + + +
+ + + + + + + +
profiling::ProfilingGuid GetGuid () const
+
+inlinefinalvirtual
+
+ +

Implements IOptimizedNetwork.

+ +

Definition at line 274 of file Network.hpp.

+
274 { return m_Guid; };
+
+
+ +

◆ PrintGraph()

+ +
+
+ + + + + +
+ + + + + + + +
Status PrintGraph ()
+
+overridevirtual
+
+ +

Implements IOptimizedNetwork.

+ +

Definition at line 64 of file Network.cpp.

+ +

References armnn::Success.

+
65 {
66  m_Graph->Print();
67  return Status::Success;
68 }
+
+
+
+ +

◆ SerializeToDot()

+ +
+
+ + + + + +
+ + + + + + + + +
Status SerializeToDot (std::ostream & stream) const
+
+overridevirtual
+
+ +

Implements IOptimizedNetwork.

+ +

Definition at line 70 of file Network.cpp.

+
71 {
72  return m_Graph->SerializeToDot(stream);
73 }
+
+
+
The documentation for this class was generated from the following files: +
+
+ + + + -- cgit v1.2.1