Home
last modified time | relevance | path

Searched refs:m_ProfilingService (Results 1 – 16 of 16) sorted by relevance

/external/armnn/profiling/client/src/backends/
DBackendProfiling.cpp19 RegisterBackendCounters(currentMaxGlobalCounterID, m_BackendId, m_ProfilingService)); in GetCounterRegistrationInterface()
24 return m_ProfilingService.GetSendTimelinePacket(); in GetSendTimelinePacket()
30 return m_ProfilingService; in GetProfilingGuidGenerator()
41 backendCounterValue.counterId = m_ProfilingService.GetCounterMappings().GetGlobalId( in ReportCounters()
46 m_ProfilingService.GetSendCounterPacket().SendPeriodicCounterCapturePacket( in ReportCounters()
53 …uint16_t globalCounterId = m_ProfilingService.GetCounterMappings().GetGlobalId(backendCounterId, m… in GetCounterStatus()
54 CaptureData captureData = m_ProfilingService.GetCaptureData(); in GetCounterStatus()
69 CaptureData captureData = m_ProfilingService.GetCaptureData(); in GetActiveCounters()
77 m_ProfilingService.GetCounterMappings().GetBackendId(globalCounterId); in GetActiveCounters()
92 return m_ProfilingService.IsProfilingEnabled(); in IsProfilingEnabled()
DBackendProfiling.hpp24 m_ProfilingService(profilingService), in BackendProfiling()
47 IProfilingService& m_ProfilingService; member in arm::pipe::BackendProfiling
/external/armnn/src/armnn/
DBackendRegistry.cpp31 if (m_ProfilingService.has_value()) in Register()
33 if (m_ProfilingService.has_value() && m_ProfilingService.value().IsProfilingEnabled()) in Register()
35 m_ProfilingService.value().IncrementCounterValue(arm::pipe::REGISTERED_BACKENDS); in Register()
46 if (m_ProfilingService.has_value() && m_ProfilingService.value().IsProfilingEnabled()) in Deregister()
48 m_ProfilingService.value().IncrementCounterValue(arm::pipe::UNREGISTERED_BACKENDS); in Deregister()
109 m_ProfilingService = profilingService; in SetProfilingService()
DRuntime.cpp203 m_ProfilingService.get()); in LoadNetwork()
224 if (m_ProfilingService->IsProfilingEnabled()) in LoadNetwork()
226 m_ProfilingService->IncrementCounterValue(arm::pipe::NETWORK_LOADS); in LoadNetwork()
248 arm::pipe::TimelineUtilityMethods::GetTimelineUtils(*m_ProfilingService.get()); in UnloadNetwork()
272 if (m_ProfilingService->IsProfilingEnabled()) in UnloadNetwork()
274 m_ProfilingService->IncrementCounterValue(arm::pipe::NETWORK_UNLOADS); in UnloadNetwork()
326 m_ProfilingService = arm::pipe::IProfilingService::CreateProfilingService( in RuntimeImpl()
514 *m_ProfilingService.get(), in RuntimeImpl()
523 m_ProfilingService->AddBackendProfilingContext(id, profilingContext); in RuntimeImpl()
532 BackendRegistryInstance().SetProfilingService(*m_ProfilingService.get()); in RuntimeImpl()
[all …]
DLoadedNetwork.cpp211 m_ProfilingService(profilingService) in LoadedNetwork()
349 TimelineUtilityMethods::GetTimelineUtils(*m_ProfilingService); in LoadedNetwork()
995 TimelineUtilityMethods::GetTimelineUtils(*m_ProfilingService); in EnqueueWorkload()
996 ProfilingGuid inferenceGuid = m_ProfilingService->GetNextGuid(); in EnqueueWorkload()
1012 if (m_ProfilingService->IsProfilingEnabled()) in EnqueueWorkload()
1014 m_ProfilingService->IncrementCounterValue(INFERENCES_RUN); in EnqueueWorkload()
1084 TimelineUtilityMethods::GetTimelineUtils(*m_ProfilingService); in EnqueueInput()
1172 TimelineUtilityMethods::GetTimelineUtils(*m_ProfilingService); in EnqueueOutput()
1814 TimelineUtilityMethods::GetTimelineUtils(*m_ProfilingService); in Execute()
1815 ProfilingGuid inferenceGuid = m_ProfilingService->GetNextGuid(); in Execute()
DRuntime.hpp159 std::unique_ptr<arm::pipe::IProfilingService> m_ProfilingService; member
DLoadedNetwork.hpp169 arm::pipe::IProfilingService* m_ProfilingService; member in armnn::LoadedNetwork
/external/armnn/src/profiling/test/
DProfilingTests.hpp178 , m_ProfilingService(profilingService) in SwapProfilingConnectionFactoryHelper()
184 SwapProfilingConnectionFactory(m_ProfilingService, in SwapProfilingConnectionFactoryHelper()
193 SwapProfilingConnectionFactory(m_ProfilingService, in ~SwapProfilingConnectionFactoryHelper()
200 IProfilingConnection* profilingConnection = GetProfilingConnection(m_ProfilingService); in GetMockProfilingConnection()
206 TransitionToState(m_ProfilingService, newState); in ForceTransitionToState()
221 ProfilingService::WaitForPacketSent(m_ProfilingService, timeout); in WaitForPacketsSent()
242 ProfilingService& m_ProfilingService; member in arm::pipe::SwapProfilingConnectionFactoryHelper
DProfilingTestUtils.hpp85 m_ProfilingService(profilingService) {} in ProfilingServiceRuntimeHelper()
90 return GetBufferManager(static_cast<arm::pipe::ProfilingService&>(m_ProfilingService)); in GetProfilingBufferManager()
92 arm::pipe::IProfilingService& m_ProfilingService; member in arm::pipe::ProfilingServiceRuntimeHelper
96 TransitionToState(static_cast<arm::pipe::ProfilingService&>(m_ProfilingService), newState); in ForceTransitionToState()
DFileOnlyProfilingDecoratorTests.cpp35 return ProfilingService::WaitForPacketSent(m_ProfilingService, timeout); in WaitForPacketsSent()
37 ProfilingService m_ProfilingService; member in FileOnlyHelperService
/external/armnn/profiling/client/src/
DRegisterBackendCounters.hpp29 m_ProfilingService(profilingService), in RegisterBackendCounters()
30 m_CounterDirectory(m_ProfilingService.GetCounterRegistry()) {} in RegisterBackendCounters()
61 IProfilingService& m_ProfilingService; member in arm::pipe::RegisterBackendCounters
DActivateTimelineReportingCommandHandler.hpp41 m_ProfilingService(profilingService), in ActivateTimelineReportingCommandHandler()
52 IProfilingService& m_ProfilingService; member in arm::pipe::ActivateTimelineReportingCommandHandler
DActivateTimelineReportingCommandHandler.cpp58 m_ReportStructure.value().ReportStructure(m_ProfilingService); in operator ()()
DRegisterBackendCounters.cpp62 IRegisterCounterMapping& counterIdMap = m_ProfilingService.GetCounterMappingRegistry(); in RegisterCounter()
/external/armnn/src/armnnTestUtils/
DTestUtils.cpp61 return *(runtime->m_ProfilingService.get()); in GetProfilingService()
/external/armnn/include/armnn/
DBackendRegistry.hpp81 armnn::Optional<arm::pipe::IProfilingService&> m_ProfilingService; member in armnn::BackendRegistry