MCPcopy Create free account
hub / github.com/ARM-software/armnn / IncrementCounterValue

Method IncrementCounterValue

profiling/client/src/ProfilingService.cpp:331–337  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

329}
330
331uint32_t ProfilingService::IncrementCounterValue(uint16_t counterUid)
332{
333 CheckCounterUid(counterUid);
334 std::atomic<uint32_t>* counterValuePtr = m_CounterIndex.at(counterUid);
335 ARM_PIPE_ASSERT(counterValuePtr);
336 return counterValuePtr->operator++(std::memory_order::memory_order_relaxed);
337}
338
339std::unique_ptr<ISendTimelinePacket> ProfilingService::GetSendTimelinePacket() const
340{

Callers 6

ProfilingTests.cppFile · 0.80
LoadNetworkMethod · 0.80
UnloadNetworkMethod · 0.80
EnqueueWorkloadMethod · 0.80
RegisterMethod · 0.80
DeregisterMethod · 0.80

Calls 1

operator++Method · 0.45

Tested by

no test coverage detected