aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/IScheduler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/IScheduler.cpp')
-rw-r--r--src/runtime/IScheduler.cpp7
1 files changed, 7 insertions, 0 deletions
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<Workload> &workloads, const char *tag)
+{
+ ARM_COMPUTE_UNUSED(tag);
+ run_workloads(workloads);
+}
+
} // namespace arm_compute