From 376c85f3d826526b8b197c55e22c10765a97631e Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Fri, 25 May 2018 14:17:21 +0100 Subject: COMPMID-1180: Add support for bucket multi-threading (Part2) - Introduced some Hints allowing the function to set its favourite splitting method for a given workload - Implemented the bucket split (Disabled by default) Change-Id: I3a48dfb0bd0ec8b69a44d9c4a4c77ad3f6dc9827 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/133079 Tested-by: Jenkins Reviewed-by: Gian Marco Iodice --- arm_compute/runtime/IScheduler.h | 72 ++++++++++++++++++++++++++++++++++++++-- 1 file changed, 69 insertions(+), 3 deletions(-) (limited to 'arm_compute/runtime/IScheduler.h') diff --git a/arm_compute/runtime/IScheduler.h b/arm_compute/runtime/IScheduler.h index 76ff5a3de0..1f90f4ef9c 100644 --- a/arm_compute/runtime/IScheduler.h +++ b/arm_compute/runtime/IScheduler.h @@ -36,6 +36,72 @@ class ICPPKernel; class IScheduler { public: + /** Strategies available to split a workload */ + enum class StrategyHint + { + STATIC, /**< Split the workload evenly among the threads */ + DYNAMIC, /**< Split the workload dynamically using a bucket system */ + }; + /** Scheduler hints + * + * Collection of preferences set by the function regarding how to split a given workload + */ + class Hints + { + public: + /** Constructor + * + * @param[in] split_dimension Dimension along which to split the kernel's execution window. + * @param[in] strategy (Optional) Split strategy. + */ + Hints(unsigned int split_dimension, StrategyHint strategy = StrategyHint::STATIC) + : _split_dimension(split_dimension), _strategy(strategy) + { + } + /** Set the split_dimension hint + * + * @param[in] split_dimension Dimension along which to split the kernel's execution window. + * + * @return the Hints object + */ + Hints &set_split_dimension(unsigned int split_dimension) + { + _split_dimension = split_dimension; + return *this; + } + /** Return the prefered split dimension + * + * @return The split dimension + */ + unsigned int split_dimension() const + { + return _split_dimension; + } + + /** Set the strategy hint + * + * @param[in] strategy Prefered strategy to use to split the workload + * + * @return the Hints object + */ + Hints &set_strategy(StrategyHint strategy) + { + _strategy = strategy; + return *this; + } + /** Return the prefered strategy to use to split workload. + * + * @return The strategy + */ + StrategyHint strategy() const + { + return _strategy; + } + + private: + unsigned int _split_dimension; + StrategyHint _strategy; + }; /** Signature for the workloads to execute */ using Workload = std::function; /** Default constructor. */ @@ -58,10 +124,10 @@ public: /** Runs the kernel in the same thread as the caller synchronously. * - * @param[in] kernel Kernel to execute. - * @param[in] split_dimension Dimension along which to split the kernel's execution window. + * @param[in] kernel Kernel to execute. + * @param[in] hints Hints for the scheduler. */ - virtual void schedule(ICPPKernel *kernel, unsigned int split_dimension) = 0; + virtual void schedule(ICPPKernel *kernel, const Hints &hints) = 0; /** Execute all the passed workloads * -- cgit v1.2.1