aboutsummaryrefslogtreecommitdiff
path: root/include/armnn
diff options
context:
space:
mode:
Diffstat (limited to 'include/armnn')
-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; }