From 148b07500ad883ff2d31a4087ba2538103005979 Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Tue, 11 Sep 2018 14:19:39 +0100 Subject: COMPMID-1563: Added a tag to ISCheduler::run_workloads to identify workloads Change-Id: Ieac59e3ccf47feab8f88c65200eb8a81b2eb4196 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/147728 Tested-by: bsgcomp Reviewed-by: Georgios Pinitas --- src/runtime/IScheduler.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/runtime/IScheduler.cpp') diff --git a/src/runtime/IScheduler.cpp b/src/runtime/IScheduler.cpp index 54a2bd2182..5188dce4eb 100644 --- a/src/runtime/IScheduler.cpp +++ b/src/runtime/IScheduler.cpp @@ -23,6 +23,7 @@ */ #include "arm_compute/runtime/IScheduler.h" +#include "arm_compute/core/Error.h" #include "arm_compute/runtime/CPUUtils.h" namespace arm_compute @@ -43,4 +44,10 @@ unsigned int IScheduler::num_threads_hint() const { return _num_threads_hint; } +void IScheduler::run_tagged_workloads(std::vector &workloads, const char *tag) +{ + ARM_COMPUTE_UNUSED(tag); + run_workloads(workloads); +} + } // namespace arm_compute -- cgit v1.2.1