#include <OptimizedNetworkImpl.hpp>
Definition at line 11 of file OptimizedNetworkImpl.hpp.
◆ OptimizedNetworkImpl() [1/3]
◆ OptimizedNetworkImpl() [2/3]
Definition at line 3263 of file Network.cpp.
3264 : m_Graph(std::move(graph)), m_Guid(arm::pipe::IProfilingService::GetNextGuid())
3265{
3266}
◆ OptimizedNetworkImpl() [3/3]
Definition at line 3268 of file Network.cpp.
3269 : m_Graph(std::move(graph)), m_Guid(arm::pipe::IProfilingService::GetNextGuid()), m_ModelOptions(modelOptions)
3270{
3271}
◆ ~OptimizedNetworkImpl()
◆ ExecuteStrategy()
| void ExecuteStrategy |
( |
IStrategy & | strategy | ) |
const |
Definition at line 3282 of file Network.cpp.
3283{
3284 for (auto layer : GetGraph())
3285 {
3286 layer->ExecuteStrategy(strategy);
3287 };
3288}
References GetGraph().
◆ GetGraph() [1/2]
◆ GetGraph() [2/2]
| Graph & GetGraph |
( |
| ) |
const |
|
inline |
◆ GetGuid()
| virtual arm::pipe::ProfilingGuid GetGuid |
( |
| ) |
const |
|
inlinevirtual |
◆ GetModelOptions()
◆ GetNumInputs()
| size_t GetNumInputs |
( |
| ) |
const |
|
virtual |
Definition at line 752 of file Network.cpp.
753{
754 return m_Graph->GetNumInputs();
755}
◆ GetNumOutputs()
| size_t GetNumOutputs |
( |
| ) |
const |
|
virtual |
Definition at line 757 of file Network.cpp.
758{
759 return m_Graph->GetNumOutputs();
760}
◆ PrintGraph()
◆ SerializeToDot()
| Status SerializeToDot |
( |
std::ostream & | stream | ) |
const |
|
virtual |
Definition at line 747 of file Network.cpp.
748{
749 return m_Graph->SerializeToDot(stream);
750}
The documentation for this class was generated from the following files: