aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/Runtime.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/Runtime.cpp')
-rw-r--r--src/armnn/Runtime.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/armnn/Runtime.cpp b/src/armnn/Runtime.cpp
index af257e1be5..57bceddbfd 100644
--- a/src/armnn/Runtime.cpp
+++ b/src/armnn/Runtime.cpp
@@ -286,18 +286,18 @@ const std::shared_ptr<IProfiler> RuntimeImpl::GetProfiler(NetworkId networkId) c
return nullptr;
}
-void RuntimeImpl::ReportStructure() // arm::pipe::IProfilingService& profilingService as param
+void RuntimeImpl::ReportStructure(arm::pipe::IProfilingService& profilingService)
{
- // No-op for the time being, but this may be useful in future to have the profilingService available
- // if (profilingService.IsProfilingEnabled()){}
-
- LoadedNetworks::iterator it = m_LoadedNetworks.begin();
- while (it != m_LoadedNetworks.end())
+ if (profilingService.IsProfilingEnabled())
{
- auto& loadedNetwork = it->second;
- loadedNetwork->SendNetworkStructure();
- // Increment the Iterator to point to next entry
- it++;
+ LoadedNetworks::iterator it = m_LoadedNetworks.begin();
+ while (it != m_LoadedNetworks.end())
+ {
+ auto& loadedNetwork = it->second;
+ loadedNetwork->SendNetworkStructure(profilingService);
+ // Increment the Iterator to point to next entry
+ it++;
+ }
}
}