aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/Runtime.cpp
diff options
context:
space:
mode:
authorCathal Corbett <cathal.corbett@arm.com>2022-03-04 10:36:34 +0000
committerCathal Corbett <cathal.corbett@arm.com>2022-03-07 11:19:08 +0000
commit19793551a67a5afd4cfb68e5dda7751e3d321a35 (patch)
tree355707246183ea982d4e6fead5be25f038111624 /src/armnn/Runtime.cpp
parent344302581b66677a748a456f370752db75adde21 (diff)
downloadarmnn-19793551a67a5afd4cfb68e5dda7751e3d321a35.tar.gz
IVGCVSW-6817 Add IProfilingService& as an argument to the IReportStructure
Signed-off-by: Cathal Corbett <cathal.corbett@arm.com> Change-Id: Ib8e75eea49debe3b1dd8fa72623a55b26cb6ded4
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++;
+ }
}
}