aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/RegisterBackendCounters.hpp
diff options
context:
space:
mode:
authorJim Flynn <jim.flynn@arm.com>2022-03-02 11:04:47 +0000
committerJim Flynn <jim.flynn@arm.com>2022-03-03 14:55:15 +0000
commitaf947729dc2aa7cdb6d4a716e2edf307710a8155 (patch)
tree87945dbee99d430032b27d2f6ee7a9975cb870ba /src/profiling/RegisterBackendCounters.hpp
parent2b679db94a0f95861b47df6bb02d2992cf6d5af6 (diff)
downloadarmnn-af947729dc2aa7cdb6d4a716e2edf307710a8155.tar.gz
IVGCVSW-6811 replace ProfilingService includes with IProfilingService
Change-Id: I00521756c8a19d10bfdc98c6ef4204c7f84901c6 Signed-off-by: Jim Flynn <jim.flynn@arm.com>
Diffstat (limited to 'src/profiling/RegisterBackendCounters.hpp')
-rw-r--r--src/profiling/RegisterBackendCounters.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/profiling/RegisterBackendCounters.hpp b/src/profiling/RegisterBackendCounters.hpp
index f25feb5306..34f9f3a3eb 100644
--- a/src/profiling/RegisterBackendCounters.hpp
+++ b/src/profiling/RegisterBackendCounters.hpp
@@ -8,7 +8,7 @@
#include "armnn/backends/profiling/IBackendProfiling.hpp"
#include "CounterIdMap.hpp"
#include "CounterDirectory.hpp"
-#include "ProfilingService.hpp"
+#include "IProfilingService.hpp"
namespace arm
{
@@ -21,7 +21,7 @@ class RegisterBackendCounters : public IRegisterBackendCounters
public:
RegisterBackendCounters(
- uint16_t currentMaxGlobalCounterID, const armnn::BackendId& backendId, ProfilingService& profilingService)
+ uint16_t currentMaxGlobalCounterID, const armnn::BackendId& backendId, IProfilingService& profilingService)
: m_CurrentMaxGlobalCounterID(currentMaxGlobalCounterID),
m_BackendId(backendId),
m_ProfilingService(profilingService),
@@ -55,10 +55,10 @@ public:
private:
uint16_t m_CurrentMaxGlobalCounterID;
const armnn::BackendId& m_BackendId;
- ProfilingService& m_ProfilingService;
+ IProfilingService& m_ProfilingService;
ICounterRegistry& m_CounterDirectory;
};
} // namespace pipe
-} // namespace arm \ No newline at end of file
+} // namespace arm