aboutsummaryrefslogtreecommitdiff
path: root/ArmnnPreparedModel.cpp
diff options
context:
space:
mode:
authorColm Donelan <colm.donelan@arm.com>2022-02-15 14:59:08 +0000
committerColm Donelan <colm.donelan@arm.com>2022-02-15 15:05:43 +0000
commit2048b68cf7caf14e03ceaf84d841bda7bbda8c75 (patch)
tree37e8c5e102f487a67ca51c224f54cccafa527fb6 /ArmnnPreparedModel.cpp
parent0c65ddb3bdb29850b669fafb00a46cb7f67ee675 (diff)
downloadandroid-nn-driver-2048b68cf7caf14e03ceaf84d841bda7bbda8c75.tar.gz
IVGCVSW-6783 Re-ordering DumpJsonProfilingIfRequired in ArmnnPreparedModel
* In the destructor of ArmnnPreparedModel, DumpJsonProfilingIfRequired was being called with a potentially null profiler. Signed-off-by: Colm Donelan <colm.donelan@arm.com> Change-Id: Id0d3a2403878fedc4e05dc498edb48d574232c71
Diffstat (limited to 'ArmnnPreparedModel.cpp')
-rw-r--r--ArmnnPreparedModel.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/ArmnnPreparedModel.cpp b/ArmnnPreparedModel.cpp
index 563abd44..38f1bc20 100644
--- a/ArmnnPreparedModel.cpp
+++ b/ArmnnPreparedModel.cpp
@@ -154,6 +154,12 @@ ArmnnPreparedModel<HalVersion>::~ArmnnPreparedModel()
{
// Get a hold of the profiler used by this model.
std::shared_ptr<armnn::IProfiler> profiler = m_Runtime->GetProfiler(m_NetworkId);
+ if (profiler && m_GpuProfilingEnabled)
+ {
+ // Dump the profiling info to a file if required.
+ DumpJsonProfilingIfRequired(m_GpuProfilingEnabled, m_RequestInputsAndOutputsDumpDir, m_NetworkId,
+ profiler.get());
+ }
// Unload the network associated with this model.
m_Runtime->UnloadNetwork(m_NetworkId);
@@ -163,9 +169,6 @@ ArmnnPreparedModel<HalVersion>::~ArmnnPreparedModel()
{
m_Threadpool->UnloadMemHandles(m_NetworkId);
}
-
- // Dump the profiling info to a file if required.
- DumpJsonProfilingIfRequired(m_GpuProfilingEnabled, m_RequestInputsAndOutputsDumpDir, m_NetworkId, profiler.get());
}
template<typename HalVersion>