From 6f073727ad98d94f43a3938ddeac3f5a231ad959 Mon Sep 17 00:00:00 2001 From: Cathal Corbett Date: Fri, 4 Mar 2022 12:11:09 +0000 Subject: IVGCVSW-6814 Remove references to armnn:BackendId in the profiling code Signed-off-by: Cathal Corbett Change-Id: Ib399a5eee9e52882800ec3e02e4173424a7c19b1 --- src/profiling/RegisterBackendCounters.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/profiling/RegisterBackendCounters.hpp') diff --git a/src/profiling/RegisterBackendCounters.hpp b/src/profiling/RegisterBackendCounters.hpp index 34f9f3a3eb..88234df273 100644 --- a/src/profiling/RegisterBackendCounters.hpp +++ b/src/profiling/RegisterBackendCounters.hpp @@ -21,7 +21,7 @@ class RegisterBackendCounters : public IRegisterBackendCounters public: RegisterBackendCounters( - uint16_t currentMaxGlobalCounterID, const armnn::BackendId& backendId, IProfilingService& profilingService) + uint16_t currentMaxGlobalCounterID, const std::string& backendId, IProfilingService& profilingService) : m_CurrentMaxGlobalCounterID(currentMaxGlobalCounterID), m_BackendId(backendId), m_ProfilingService(profilingService), @@ -54,7 +54,7 @@ public: private: uint16_t m_CurrentMaxGlobalCounterID; - const armnn::BackendId& m_BackendId; + const std::string& m_BackendId; IProfilingService& m_ProfilingService; ICounterRegistry& m_CounterDirectory; }; -- cgit v1.2.1