aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/Profiling.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/Profiling.cpp')
-rw-r--r--src/armnn/Profiling.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/armnn/Profiling.cpp b/src/armnn/Profiling.cpp
index 4caa31905c..c153eb67fa 100644
--- a/src/armnn/Profiling.cpp
+++ b/src/armnn/Profiling.cpp
@@ -132,7 +132,7 @@ void Profiler::AnalyzeEventSequenceAndWriteResults(ItertType first, ItertType la
<< std::setw(20) << durationMs
<< std::setw(20) << startTimeMs
<< std::setw(20) << stopTimeMs
- << std::setw(20) << GetComputeDeviceAsCString(eventPtr->GetComputeDevice())
+ << std::setw(20) << eventPtr->GetBackendId().Get()
<< std::endl;
}
outStream << std::endl;
@@ -194,10 +194,12 @@ void Profiler::EnableProfiling(bool enableProfiling)
m_ProfilingEnabled = enableProfiling;
}
-Event* Profiler::BeginEvent(Compute compute, const std::string& label, std::vector<InstrumentPtr>&& instruments)
+Event* Profiler::BeginEvent(const BackendId& backendId,
+ const std::string& label,
+ std::vector<InstrumentPtr>&& instruments)
{
Event* parent = m_Parents.empty() ? nullptr : m_Parents.top();
- m_EventSequence.push_back(std::make_unique<Event>(label, this, parent, compute, std::move(instruments)));
+ m_EventSequence.push_back(std::make_unique<Event>(label, this, parent, backendId, std::move(instruments)));
Event* event = m_EventSequence.back().get();
event->Start();