aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/WorkingMemHandle.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/WorkingMemHandle.hpp')
-rw-r--r--src/armnn/WorkingMemHandle.hpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/armnn/WorkingMemHandle.hpp b/src/armnn/WorkingMemHandle.hpp
index 5ccb2b2342..5e3fd66299 100644
--- a/src/armnn/WorkingMemHandle.hpp
+++ b/src/armnn/WorkingMemHandle.hpp
@@ -13,6 +13,7 @@
#include <armnn/Tensor.hpp>
#include <unordered_map>
+#include <mutex>
namespace armnn
{
@@ -38,10 +39,7 @@ public:
return m_NetworkId;
}
- profiling::ProfilingGuid GetInferenceId() override
- {
- return m_InferenceId;
- }
+
/// Allocate the backing memory required for execution. If this is not called, then allocation will be
/// deferred to execution time. The mutex must be locked.
@@ -92,7 +90,6 @@ private:
bool m_IsAllocated;
std::mutex m_Mutex;
- profiling::ProfilingGuid m_InferenceId;
};
} // end experimental namespace