aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJan Eilers <jan.eilers@arm.com>2019-11-06 10:02:16 +0000
committerJan Eilers <jan.eilers@arm.com>2019-11-12 09:53:11 +0000
commit99d9d4a7c62715328378a95b8140862cb0f599fb (patch)
treeef60e380726afa2a02cac8aa9ef75650508d3c05 /include
parent94d3b931eddd1f75fccb2ec111e6499cb9ccdeeb (diff)
downloadarmnn-99d9d4a7c62715328378a95b8140862cb0f599fb.tar.gz
IVGCVSW-4069 Add ProfilingGuid to Network
Added ProfilingGuid to * INetwork, * Network, * IOptimizedNetwork and * OptimizedNetwork !android-nn-driver:2234 !armnn:2250 Signed-off-by: Jan Eilers <jan.eilers@arm.com> Change-Id: I235116992cc47b4f385b7eb9da514c6350ca00f4
Diffstat (limited to 'include')
-rw-r--r--include/armnn/INetwork.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/armnn/INetwork.hpp b/include/armnn/INetwork.hpp
index 6efc84fdf2..647f072804 100644
--- a/include/armnn/INetwork.hpp
+++ b/include/armnn/INetwork.hpp
@@ -95,6 +95,8 @@ public:
virtual Status PrintGraph() = 0;
+ virtual profiling::ProfilingGuid GetGuid() const = 0;
+
/// Adds an input layer to the network.
/// @param id - User generated id to uniquely identify a particular input. The same id needs to be specified.
/// when passing the inputs to the IRuntime::EnqueueWorkload() function.
@@ -540,6 +542,7 @@ public:
virtual Status PrintGraph() = 0;
virtual Status SerializeToDot(std::ostream& stream) const = 0;
+ virtual profiling::ProfilingGuid GetGuid() const = 0;
protected:
~IOptimizedNetwork() {}