From af947729dc2aa7cdb6d4a716e2edf307710a8155 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Wed, 2 Mar 2022 11:04:47 +0000 Subject: IVGCVSW-6811 replace ProfilingService includes with IProfilingService Change-Id: I00521756c8a19d10bfdc98c6ef4204c7f84901c6 Signed-off-by: Jim Flynn --- include/armnn/BackendRegistry.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/armnn/BackendRegistry.hpp') diff --git a/include/armnn/BackendRegistry.hpp b/include/armnn/BackendRegistry.hpp index 08e164c549..40a117ea48 100644 --- a/include/armnn/BackendRegistry.hpp +++ b/include/armnn/BackendRegistry.hpp @@ -20,7 +20,7 @@ namespace arm namespace pipe { -class ProfilingService; +class IProfilingService; } // namespace arm } // namespace pipe @@ -44,7 +44,7 @@ public: size_t Size() const; BackendIdSet GetBackendIds() const; std::string GetBackendIdsAsString() const; - void SetProfilingService(armnn::Optional profilingService); + void SetProfilingService(armnn::Optional profilingService); void RegisterAllocator(const BackendId& id, std::shared_ptr alloc); std::unordered_map> GetAllocators(); void RegisterMemoryOptimizerStrategy(const BackendId& id, std::shared_ptr strategy); @@ -78,7 +78,7 @@ private: BackendRegistry& operator=(const BackendRegistry&) = delete; FactoryStorage m_Factories; - armnn::Optional m_ProfilingService; + armnn::Optional m_ProfilingService; std::unordered_map> m_CustomMemoryAllocatorMap; std::unordered_map> m_MemoryOptimizerStrategyMap; }; -- cgit v1.2.1