From 99d9d4a7c62715328378a95b8140862cb0f599fb Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Wed, 6 Nov 2019 10:02:16 +0000 Subject: 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 Change-Id: I235116992cc47b4f385b7eb9da514c6350ca00f4 --- include/armnn/INetwork.hpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include') 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() {} -- cgit v1.2.1