aboutsummaryrefslogtreecommitdiff
path: root/src/armnn
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn')
-rw-r--r--src/armnn/NeonInterceptorScheduler.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/armnn/NeonInterceptorScheduler.cpp b/src/armnn/NeonInterceptorScheduler.cpp
index 6f52729092..8363def68e 100644
--- a/src/armnn/NeonInterceptorScheduler.cpp
+++ b/src/armnn/NeonInterceptorScheduler.cpp
@@ -42,7 +42,8 @@ void NeonInterceptorScheduler::schedule(arm_compute::ICPPKernel* kernel, const H
void NeonInterceptorScheduler::run_workloads(std::vector <Workload>& workloads)
{
m_Timer.Start();
- m_RealScheduler.run_workloads(workloads);
+ // NOTE: we should think about utilising the tag to make profiling more understandable
+ m_RealScheduler.run_tagged_workloads(workloads, nullptr);
m_Timer.Stop();
std::vector<Measurement> measurements = m_Timer.GetMeasurements();