From b3021435ad91e494af01ca0778915877dc0780c0 Mon Sep 17 00:00:00 2001 From: Sadik Armagan Date: Wed, 13 Jan 2021 15:56:51 +0000 Subject: IVGCVSW-4417 'Serialise ArmNN Model on android-nn-driver' * Implemented serialization of the network on android-nn-driver !armnn:4850 Signed-off-by: Sadik Armagan Change-Id: I3caf07bd4d1d2a3068c58f0b344303c4cf977ca6 --- ArmnnDriverImpl.cpp | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'ArmnnDriverImpl.cpp') diff --git a/ArmnnDriverImpl.cpp b/ArmnnDriverImpl.cpp index ef37cae6..917370cf 100644 --- a/ArmnnDriverImpl.cpp +++ b/ArmnnDriverImpl.cpp @@ -100,6 +100,11 @@ Return ArmnnDriverImpl::prepareModel( return V1_0::ErrorStatus::NONE; } + // Serialize the network graph to a .armnn file if an output directory + // has been specified in the drivers' arguments. + auto serializedNetworkFileName = + SerializeNetwork(*modelConverter.GetINetwork(), options.GetRequestInputsAndOutputsDumpDir()); + // Optimize the network armnn::IOptimizedNetworkPtr optNet(nullptr, nullptr); armnn::OptimizerOptions OptOptions; @@ -169,11 +174,12 @@ Return ArmnnDriverImpl::prepareModel( return V1_0::ErrorStatus::NONE; } - // Now that we have a networkId for the graph rename the dump file to use it - // so that we can associate the graph file and the input/output tensor dump files - RenameGraphDotFile(dotGraphFileName, - options.GetRequestInputsAndOutputsDumpDir(), - netId); + // Now that we have a networkId for the graph rename the exported files to use it + // so that we can associate the graph file and the input/output tensor exported files + RenameExportedFiles(serializedNetworkFileName, + dotGraphFileName, + options.GetRequestInputsAndOutputsDumpDir(), + netId); sp> preparedModel( new ArmnnPreparedModel( -- cgit v1.2.1