aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSadik Armagan <sadik.armagan@arm.com>2020-03-18 10:57:30 +0000
committerSadik Armagan <sadik.armagan@arm.com>2020-03-18 15:48:21 +0000
commit3184c907b2420e6c66485529f336251b2b62aecf (patch)
treeb79190007f80da9bb9d827efb714ce13a0ffb2bb /include
parente6a2ccd09060ba93203ddc5a7f79260cedf2c147 (diff)
downloadarmnn-3184c907b2420e6c66485529f336251b2b62aecf.tar.gz
IVGCVSW-4463 Change ProfilingService to a member of runtime from a singleton
Signed-off-by: Sadik Armagan <sadik.armagan@arm.com> Change-Id: I345c39a10a4693a500aa1687d9a5cee76da791c3
Diffstat (limited to 'include')
-rw-r--r--include/armnn/INetwork.hpp2
-rw-r--r--include/armnn/Types.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/armnn/INetwork.hpp b/include/armnn/INetwork.hpp
index 7f1817c5cf..c976b82c0b 100644
--- a/include/armnn/INetwork.hpp
+++ b/include/armnn/INetwork.hpp
@@ -111,8 +111,6 @@ 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.
diff --git a/include/armnn/Types.hpp b/include/armnn/Types.hpp
index 9779958ee0..e58cecf2f4 100644
--- a/include/armnn/Types.hpp
+++ b/include/armnn/Types.hpp
@@ -252,6 +252,8 @@ static constexpr uint64_t MIN_STATIC_GUID = 1llu << 63;
class ProfilingGuid
{
public:
+ ProfilingGuid() : m_Guid(0) {}
+
ProfilingGuid(uint64_t guid) : m_Guid(guid) {}
operator uint64_t() const { return m_Guid; }