StarPU Handbook
|
This section describes the interface to manipulate codelets and tasks. More...
Data Structures | |
struct | starpu_codelet |
struct | starpu_data_descr |
struct | starpu_task |
Macros | |
#define | STARPU_NOWHERE |
#define | STARPU_CPU |
#define | STARPU_CUDA |
#define | STARPU_OPENCL |
#define | STARPU_MULTIPLE_CPU_IMPLEMENTATIONS |
#define | STARPU_MULTIPLE_CUDA_IMPLEMENTATIONS |
#define | STARPU_MULTIPLE_OPENCL_IMPLEMENTATIONS |
#define | STARPU_NMAXBUFS |
#define | STARPU_TASK_INITIALIZER |
#define | STARPU_TASK_GET_HANDLE(task, i) |
#define | STARPU_TASK_SET_HANDLE(task, handle, i) |
#define | STARPU_CODELET_GET_MODE(codelet, i) |
#define | STARPU_CODELET_SET_MODE(codelet, mode, i) |
#define | STARPU_TASK_INVALID |
Typedefs | |
typedef void(* | starpu_cpu_func_t )(void **, void *) |
typedef void(* | starpu_cuda_func_t )(void **, void *) |
typedef void(* | starpu_opencl_func_t )(void **, void *) |
Enumerations | |
enum | starpu_codelet_type { STARPU_SEQ, STARPU_SPMD, STARPU_FORKJOIN } |
enum | starpu_task_status { STARPU_TASK_INVALID, STARPU_TASK_INVALID, STARPU_TASK_BLOCKED, STARPU_TASK_READY, STARPU_TASK_RUNNING, STARPU_TASK_FINISHED, STARPU_TASK_BLOCKED_ON_TAG, STARPU_TASK_BLOCKED_ON_TASK, STARPU_TASK_BLOCKED_ON_DATA } |
This section describes the interface to manipulate codelets and tasks.
struct starpu_codelet |
The codelet structure describes a kernel that is possibly implemented on various targets. For compatibility, make sure to initialize the whole structure to zero, either by using explicit memset, or the function starpu_codelet_init(), or by letting the compiler implicitly do it in e.g. static storage case.
Data Fields | |
uint32_t | where |
int(* | can_execute )(unsigned workerid, struct starpu_task *task, unsigned nimpl) |
enum starpu_codelet_type | type |
int | max_parallelism |
starpu_cpu_func_t | cpu_func |
starpu_cuda_func_t | cuda_func |
starpu_opencl_func_t | opencl_func |
starpu_cpu_func_t | cpu_funcs [STARPU_MAXIMPLEMENTATIONS] |
starpu_cuda_func_t | cuda_funcs [STARPU_MAXIMPLEMENTATIONS] |
starpu_opencl_func_t | opencl_funcs [STARPU_MAXIMPLEMENTATIONS] |
unsigned | nbuffers |
enum starpu_data_access_mode | modes [STARPU_NMAXBUFS] |
enum starpu_data_access_mode * | dyn_modes |
unsigned | specific_nodes |
int | nodes [STARPU_NMAXBUFS] |
int * | dyn_nodes |
struct starpu_perfmodel * | model |
struct starpu_perfmodel * | power_model |
unsigned long | per_worker_stats [STARPU_NMAXWORKERS] |
const char * | name |
starpu_codelet::where |
Optional field to indicate which types of processing units are able to execute the codelet. The different values STARPU_CPU, STARPU_CUDA, STARPU_OPENCL can be combined to specify on which types of processing units the codelet can be executed. STARPU_CPU|STARPU_CUDA for instance indicates that the codelet is implemented for both CPU cores and CUDA devices while STARPU_OPENCL indicates that it is only available on OpenCL devices. If the field is unset, its value will be automatically set based on the availability of the XXX_funcs fields defined below. It can also be set to STARPU_NOWHERE to specify that no computation has to be actually done.
starpu_codelet::can_execute |
Define a function which should return 1 if the worker designated by workerid can execute the nimpl
th implementation of the given task, 0 otherwise.
starpu_codelet::type |
Optional field to specify the type of the codelet. The default is STARPU_SEQ, i.e. usual sequential implementation. Other values (STARPU_SPMD or STARPU_FORKJOIN declare that a parallel implementation is also available. See Parallel Tasks for details.
starpu_codelet::max_parallelism |
Optional field. If a parallel implementation is available, this denotes the maximum combined worker size that StarPU will use to execute parallel tasks for this codelet.
starpu_codelet::cpu_func |
starpu_codelet::cuda_func |
starpu_codelet::opencl_func |
starpu_codelet::cpu_funcs |
Optional array of function pointers to the CPU implementations of the codelet. It must be terminated by a NULL value. The functions prototype must be:
The first argument being the array of data managed by the data management library, and the second argument is a pointer to the argument passed from the field starpu_task::cl_arg. If the field starpu_codelet::where is set, then the field starpu_codelet::cpu_funcs is ignored if STARPU_CPU does not appear in the field starpu_codelet::where, it must be non-null otherwise.
starpu_codelet::cuda_funcs |
Optional array of function pointers to the CUDA implementations of the codelet. It must be terminated by a NULL value. The functions must be host-functions written in the CUDA runtime API. Their prototype must be:
If the field starpu_codelet::where is set, then the field starpu_codelet::cuda_funcs is ignored if STARPU_CUDA does not appear in the field starpu_codelet::where, it must be non-null otherwise.
starpu_codelet::opencl_funcs |
Optional array of function pointers to the OpenCL implementations of the codelet. It must be terminated by a NULL value. The functions prototype must be:
If the field starpu_codelet::where field is set, then the field starpu_codelet::opencl_funcs is ignored if STARPU_OPENCL does not appear in the field starpu_codelet::where, it must be non-null otherwise.
starpu_codelet::nbuffers |
Specify the number of arguments taken by the codelet. These arguments are managed by the DSM and are accessed from the void *buffers[]
array. The constant argument passed with the field starpu_task::cl_arg is not counted in this number. This value should not be above STARPU_NMAXBUFS.
starpu_codelet::modes |
Is an array of starpu_data_access_mode. It describes the required access modes to the data neeeded by the codelet (e.g. STARPU_RW). The number of entries in this array must be specified in the field starpu_codelet::nbuffers, and should not exceed STARPU_NMAXBUFS. If unsufficient, this value can be set with the configure option --enable-maxbuffers.
starpu_codelet::dyn_modes |
Is an array of starpu_data_access_mode. It describes the required access modes to the data needed by the codelet (e.g. STARPU_RW). The number of entries in this array must be specified in the field starpu_codelet::nbuffers. This field should be used for codelets having a number of datas greater than STARPU_NMAXBUFS (see Setting The Data Handles For A Task). When defining a codelet, one should either define this field or the field starpu_codelet::modes defined above.
starpu_codelet::specific_nodes |
Default value is 0. If this flag is set, StarPU will not systematically send all data to the memory node where the task will be executing, it will read the starpu_codelet::nodes or starpu_codelet::dyn_nodes array to determine, for each data, whether to send it on the memory node where the task will be executing (-1), or on a specific node (!= -1).
starpu_codelet::nodes |
Optional field. When starpu_codelet::specific_nodes is 1, this specifies the memory nodes where each data should be sent to for task execution. The number of entries in this array is starpu_codelet::nbuffers, and should not exceed STARPU_NMAXBUFS.
starpu_codelet::dyn_nodes |
Optional field. When starpu_codelet::specific_nodes is 1, this specifies the memory nodes where each data should be sent to for task execution. The number of entries in this array is starpu_codelet::nbuffers. This field should be used for codelets having a number of datas greater than STARPU_NMAXBUFS (see Setting The Data Handles For A Task). When defining a codelet, one should either define this field or the field starpu_codelet::nodes defined above.
starpu_codelet::model |
Optional pointer to the task duration performance model associated to this codelet. This optional field is ignored when set to NULL
or when its field starpu_perfmodel::symbol is not set.
starpu_codelet::power_model |
Optional pointer to the task power consumption performance model associated to this codelet. This optional field is ignored when set to NULL
or when its field starpu_perfmodel::field is not set. In the case of parallel codelets, this has to account for all processing units involved in the parallel execution.
starpu_codelet::per_worker_stats |
Optional array for statistics collected at runtime: this is filled by StarPU and should not be accessed directly, but for example by calling the function starpu_codelet_display_stats() (See starpu_codelet_display_stats() for details).
starpu_codelet::name |
Optional name of the codelet. This can be useful for debugging purposes.
struct starpu_data_descr |
This type is used to describe a data handle along with an access mode.
Data Fields | ||
---|---|---|
starpu_data_handle_t | handle | describes a data |
enum starpu_data_access_mode | mode | describes its access mode |
struct starpu_task |
The structure describes a task that can be offloaded on the various processing units managed by StarPU. It instantiates a codelet. It can either be allocated dynamically with the function starpu_task_create(), or declared statically. In the latter case, the programmer has to zero the structure starpu_task and to fill the different fields properly. The indicated default values correspond to the configuration of a task allocated with starpu_task_create().
Data Fields | |
struct starpu_codelet * | cl |
struct starpu_data_descr | buffers [STARPU_NMAXBUFS] |
starpu_data_handle_t | handles [STARPU_NMAXBUFS] |
void * | interfaces [STARPU_NMAXBUFS] |
starpu_data_handle_t * | dyn_handles |
void ** | dyn_interfaces |
void * | cl_arg |
size_t | cl_arg_size |
unsigned | cl_arg_free |
void(* | callback_func )(void *) |
void * | callback_arg |
unsigned | callback_arg_free |
void(* | prologue_callback_func )(void *) |
void * | prologue_callback_arg |
unsigned | prologue_callback_arg_free |
unsigned | use_tag |
starpu_tag_t | tag_id |
unsigned | sequential_consistency |
unsigned | synchronous |
int | priority |
unsigned | execute_on_a_specific_worker |
unsigned | workerid |
starpu_task_bundle_t | bundle |
int | detach |
int | destroy |
int | regenerate |
enum starpu_task_status | status |
struct starpu_profiling_task_info * | profiling_info |
double | predicted |
double | predicted_transfer |
unsigned int | mf_skip |
struct starpu_task * | prev |
struct starpu_task * | next |
void * | starpu_private |
int | magic |
unsigned | sched_ctx |
int | hypervisor_tag |
double | flops |
unsigned | scheduled |
starpu_task::cl |
Is a pointer to the corresponding structure starpu_codelet. This describes where the kernel should be executed, and supplies the appropriate implementations. When set to NULL, no code is executed during the tasks, such empty tasks can be useful for synchronization purposes.
starpu_task::buffers |
starpu_task::handles |
Is an array of starpu_data_handle_t. It specifies the handles to the different pieces of data accessed by the task. The number of entries in this array must be specified in the field starpu_codelet::nbuffers, and should not exceed STARPU_NMAXBUFS. If unsufficient, this value can be set with the configure option --enable-maxbuffers.
starpu_task::interfaces |
The actual data pointers to the memory node where execution will happen, managed by the DSM.
starpu_task::dyn_handles |
Is an array of starpu_data_handle_t. It specifies the handles to the different pieces of data accessed by the task. The number of entries in this array must be specified in the field starpu_codelet::nbuffers. This field should be used for tasks having a number of datas greater than STARPU_NMAXBUFS (see Setting The Data Handles For A Task). When defining a task, one should either define this field or the field starpu_task::handles defined above.
starpu_task::dyn_interfaces |
The actual data pointers to the memory node where execution will happen, managed by the DSM. Is used when the field starpu_task::dyn_handles is defined.
starpu_task::cl_arg |
Optional pointer which is passed to the codelet through the second argument of the codelet implementation (e.g. starpu_codelet::cpu_func or starpu_codelet::cuda_func). The default value is NULL
.
starpu_task::cl_arg_size |
Optional field. For some specific drivers, the pointer starpu_task::cl_arg cannot not be directly given to the driver function. A buffer of size starpu_task::cl_arg_size needs to be allocated on the driver. This buffer is then filled with the starpu_task::cl_arg_size bytes starting at address starpu_task::cl_arg. In this case, the argument given to the codelet is therefore not the starpu_task::cl_arg pointer, but the address of the buffer in local store (LS) instead. This field is ignored for CPU, CUDA and OpenCL codelets, where the starpu_task::cl_arg pointer is given as such.
starpu_task::cl_arg_free |
Optional field. In case starpu_task::cl_arg was allocated by the application through malloc()
, setting starpu_task::cl_arg_free to 1 makes StarPU automatically call free(cl_arg)
when destroying the task. This saves the user from defining a callback just for that. This is mostly useful when targetting devices where the codelet does not execute in the same memory space as the main thread.
starpu_task::callback_func |
Optional field, the default value is NULL
. This is a function pointer of prototype void (*f)(void *)
which specifies a possible callback. If this pointer is non-null, the callback function is executed on the host after the execution of the task. Tasks which depend on it might already be executing. The callback is passed the value contained in the starpu_task::callback_arg field. No callback is executed if the field is set to NULL.
starpu_task::callback_arg |
Optional field, the default value is NULL
. This is the pointer passed to the callback function. This field is ignored if the field starpu_task::callback_func is set to NULL
.
starpu_task::callback_arg_free |
Optional field. In case starpu_task::callback_arg was allocated by the application through malloc()
, setting starpu_task::callback_arg_free to 1 makes StarPU automatically call free(callback_arg)
when destroying the task.
starpu_task::prologue_callback_func |
Optional field, the default value is NULL
. This is a function pointer of prototype void (*f)(void *)
which specifies a possible callback. If this pointer is non-null, the callback function is executed on the host when the task becomes ready for execution, before getting scheduled. The callback is passed the value contained in the starpu_task::prologue_callback_arg field. No callback is executed if the field is set to NULL.
starpu_task::prologue_callback_arg |
Optional field, the default value is NULL
. This is the pointer passed to the prologue callback function. This field is ignored if the field starpu_task::prologue_callback_func is set to NULL
.
starpu_task::prologue_callback_arg_free |
Optional field. In case starpu_task::prologue_callback_arg was allocated by the application through malloc()
, setting starpu_task::prologue_callback_arg_free to 1 makes StarPU automatically call free(prologue_callback_arg)
when destroying the task.
starpu_task::use_tag |
Optional field, the default value is 0. If set, this flag indicates that the task should be associated with the tag contained in the starpu_task::tag_id field. Tag allow the application to synchronize with the task and to express task dependencies easily.
starpu_task::tag_id |
This optional field contains the tag associated to the task if the field starpu_task::use_tag is set, it is ignored otherwise.
starpu_task::sequential_consistency |
If this flag is set (which is the default), sequential consistency is enforced for the data parameters of this task for which sequential consistency is enabled. Clearing this flag permits to disable sequential consistency for this task, even if data have it enabled.
starpu_task::synchronous |
If this flag is set, the function starpu_task_submit() is blocking and returns only when the task has been executed (or if no worker is able to process the task). Otherwise, starpu_task_submit() returns immediately.
starpu_task::priority |
Optional field, the default value is STARPU_DEFAULT_PRIO. This field indicates a level of priority for the task. This is an integer value that must be set between the return values of the function starpu_sched_get_min_priority() for the least important tasks, and that of the function starpu_sched_get_max_priority() for the most important tasks (included). The STARPU_MIN_PRIO and STARPU_MAX_PRIO macros are provided for convenience and respectively returns the value of starpu_sched_get_min_priority() and starpu_sched_get_max_priority(). Default priority is STARPU_DEFAULT_PRIO, which is always defined as 0 in order to allow static task initialization. Scheduling strategies that take priorities into account can use this parameter to take better scheduling decisions, but the scheduling policy may also ignore it.
starpu_task::execute_on_a_specific_worker |
Default value is 0. If this flag is set, StarPU will bypass the scheduler and directly affect this task to the worker specified by the field starpu_task::workerid.
starpu_task::workerid |
Optional field. If the field starpu_task::execute_on_a_specific_worker is set, this field indicates the identifier of the worker that should process this task (as returned by starpu_worker_get_id()). This field is ignored if the field starpu_task::execute_on_a_specific_worker is set to 0.
starpu_task::bundle |
Optional field. The bundle that includes this task. If no bundle is used, this should be NULL.
starpu_task::detach |
Optional field, default value is 1. If this flag is set, it is not possible to synchronize with the task by the means of starpu_task_wait() later on. Internal data structures are only guaranteed to be freed once starpu_task_wait() is called if the flag is not set.
starpu_task::destroy |
Optional value. Default value is 0 for starpu_task_init(), and 1 for starpu_task_create(). If this flag is set, the task structure will automatically be freed, either after the execution of the callback if the task is detached, or during starpu_task_wait() otherwise. If this flag is not set, dynamically allocated data structures will not be freed until starpu_task_destroy() is called explicitly. Setting this flag for a statically allocated task structure will result in undefined behaviour. The flag is set to 1 when the task is created by calling starpu_task_create(). Note that starpu_task_wait_for_all() will not free any task.
starpu_task::regenerate |
Optional field. If this flag is set, the task will be re-submitted to StarPU once it has been executed. This flag must not be set if the flag starpu_task::destroy is set. This flag must be set before making another task depend on this one.
starpu_task::status |
Optional field. Current state of the task.
starpu_task::profiling_info |
Optional field. Profiling information for the task.
starpu_task::predicted |
Output field. Predicted duration of the task. This field is only set if the scheduling strategy uses performance models.
starpu_task::predicted_transfer |
Optional field. Predicted data transfer duration for the task in microseconds. This field is only valid if the scheduling strategy uses performance models.
starpu_task::mf_skip |
This is only used for tasks that use multiformat handle. This should only be used by StarPU.
starpu_task::prev |
A pointer to the previous task. This should only be used by StarPU.
starpu_task::next |
A pointer to the next task. This should only be used by StarPU.
starpu_task::starpu_private |
This is private to StarPU, do not modify. If the task is allocated by hand (without starpu_task_create()), this field should be set to NULL.
starpu_task::magic |
This field is set when initializing a task. The function starpu_task_submit() will fail if the field does not have the right value. This will hence avoid submitting tasks which have not been properly initialised.
starpu_task::sched_ctx |
Scheduling context.
starpu_task::hypervisor_tag |
Helps the hypervisor monitor the execution of this task.
starpu_task::flops |
This can be set to the number of floating points operations that the task will have to achieve. This is useful for easily getting GFlops curves from the tool starpu_perfmodel_plot
, and for the hypervisor load balancing.
starpu_task::scheduled |
Whether the scheduler has pushed the task on some queue
#define STARPU_NOWHERE |
This macro is used when setting the field starpu_codelet::where to specify that the codelet has no computation part, and thus does not need to be scheduled, and data does not need to be actually loaded. This is thus essentially used for synchronization tasks.
#define STARPU_CPU |
This macro is used when setting the field starpu_codelet::where to specify the codelet may be executed on a CPU processing unit.
#define STARPU_CUDA |
This macro is used when setting the field starpu_codelet::where to specify the codelet may be executed on a CUDA processing unit.
#define STARPU_OPENCL |
This macro is used when setting the field starpu_codelet::where to specify the codelet may be executed on a OpenCL processing unit.
#define STARPU_MULTIPLE_CPU_IMPLEMENTATIONS |
#define STARPU_MULTIPLE_CUDA_IMPLEMENTATIONS |
#define STARPU_MULTIPLE_OPENCL_IMPLEMENTATIONS |
#define STARPU_NMAXBUFS |
Defines the maximum number of buffers that tasks will be able to take as parameters. The default value is 8, it can be changed by using the configure option --enable-maxbuffers.
#define STARPU_TASK_INITIALIZER |
It is possible to initialize statically allocated tasks with this value. This is equivalent to initializing a structure starpu_task with the function starpu_task_init() function.
#define STARPU_TASK_GET_HANDLE | ( | task, | |
i | |||
) |
Return the i
th data handle of the given task. If the task is defined with a static or dynamic number of handles, will either return the i
th element of the field starpu_task::handles or the i
th element of the field starpu_task::dyn_handles (see Setting The Data Handles For A Task)
#define STARPU_TASK_SET_HANDLE | ( | task, | |
handle, | |||
i | |||
) |
Set the i
th data handle of the given task with the given dat handle. If the task is defined with a static or dynamic number of handles, will either set the i
th element of the field starpu_task::handles or the i
th element of the field starpu_task::dyn_handles (see Setting The Data Handles For A Task)
#define STARPU_CODELET_GET_MODE | ( | codelet, | |
i | |||
) |
Return the access mode of the i
th data handle of the given codelet. If the codelet is defined with a static or dynamic number of handles, will either return the i
th element of the field starpu_codelet::modes or the i
th element of the field starpu_codelet::dyn_modes (see Setting The Data Handles For A Task)
#define STARPU_CODELET_SET_MODE | ( | codelet, | |
mode, | |||
i | |||
) |
Set the access mode of the i
th data handle of the given codelet. If the codelet is defined with a static or dynamic number of handles, will either set the i
th element of the field starpu_codelet::modes or the i
th element of the field starpu_codelet::dyn_modes (see Setting The Data Handles For A Task)
starpu_task_status::STARPU_TASK_INVALID |
The task has just been initialized.
starpu_cpu_func_t |
CPU implementation of a codelet.
starpu_cuda_func_t |
CUDA implementation of a codelet.
starpu_opencl_func_t |
OpenCL implementation of a codelet.
enum starpu_codelet_type |
Describes the type of parallel task. See Parallel Tasks for details.
STARPU_SEQ |
(default) for classical sequential tasks. |
STARPU_SPMD |
for a parallel task whose threads are handled by StarPU, the code has to use starpu_combined_worker_get_size() and starpu_combined_worker_get_rank() to distribute the work. |
STARPU_FORKJOIN |
for a parallel task whose threads are started by the codelet function, which has to use starpu_combined_worker_get_size() to determine how many threads should be started. |
enum starpu_task_status |
Task status
void starpu_codelet_init | ( | struct starpu_codelet * | cl | ) |
Initialize cl
with default values. Codelets should preferably be initialized statically as shown in Defining A Codelet. However such a initialisation is not always possible, e.g. when using C++.
void starpu_task_init | ( | struct starpu_task * | task | ) |
Initialize task with default values. This function is implicitly called by starpu_task_create(). By default, tasks initialized with starpu_task_init() must be deinitialized explicitly with starpu_task_clean(). Tasks can also be initialized statically, using STARPU_TASK_INITIALIZER.
|
read |
Allocate a task structure and initialize it with default values. Tasks allocated dynamically with starpu_task_create() are automatically freed when the task is terminated. This means that the task pointer can not be used any more once the task is submitted, since it can be executed at any time (unless dependencies make it wait) and thus freed at any time. If the field starpu_task::destroy is explicitly unset, the resources used by the task have to be freed by calling starpu_task_destroy().
|
read |
Allocate a task structure which is the exact duplicate of the given task.
void starpu_task_clean | ( | struct starpu_task * | task | ) |
Release all the structures automatically allocated to execute task, but not the task structure itself and values set by the user remain unchanged. It is thus useful for statically allocated tasks for instance. It is also useful when users want to execute the same operation several times with as least overhead as possible. It is called automatically by starpu_task_destroy(). It has to be called only after explicitly waiting for the task or after starpu_shutdown() (waiting for the callback is not enough, since StarPU still manipulates the task after calling the callback).
void starpu_task_destroy | ( | struct starpu_task * | task | ) |
Free the resource allocated during starpu_task_create() and associated with task. This function is already called automatically after the execution of a task when the field starpu_task::destroy is set, which is the default for tasks created by starpu_task_create(). Calling this function on a statically allocated task results in an undefined behaviour.
int starpu_task_wait | ( | struct starpu_task * | task | ) |
This function blocks until task
has been executed. It is not possible to synchronize with a task more than once. It is not possible to wait for synchronous or detached tasks. Upon successful completion, this function returns 0. Otherwise, -EINVAL
indicates that the specified task was either synchronous or detached.
int starpu_task_submit | ( | struct starpu_task * | task | ) |
This function submits task to StarPU. Calling this function does not mean that the task will be executed immediately as there can be data or task (tag) dependencies that are not fulfilled yet: StarPU will take care of scheduling this task with respect to such dependencies. This function returns immediately if the field starpu_task::synchronous is set to 0, and block until the termination of the task otherwise. It is also possible to synchronize the application with asynchronous tasks by the means of tags, using the function starpu_tag_wait() function for instance. In case of success, this function returns 0, a return value of -ENODEV
means that there is no worker able to process this task (e.g. there is no GPU available and this task is only implemented for CUDA devices). starpu_task_submit() can be called from anywhere, including codelet functions and callbacks, provided that the field starpu_task::synchronous is set to 0.
int starpu_task_submit_to_ctx | ( | struct starpu_task * | task, |
unsigned | sched_ctx_id | ||
) |
This function submits a task to StarPU to the context sched_ctx_id
. By default starpu_task_submit submits the task to a global context that is created automatically by StarPU.
int starpu_task_wait_for_all | ( | void | ) |
This function blocks until all the tasks that were submitted (to the current context or the global one if there aren't any) are terminated. It does not destroy these tasks.
int starpu_task_wait_for_all_in_ctx | ( | unsigned | sched_ctx_id | ) |
This function waits until all the tasks that were already submitted to the context sched_ctx_id
have been executed
int starpu_task_wait_for_n_submitted | ( | unsigned | n | ) |
This function blocks until there are n
submitted tasks left (to the current context or the global one if there aren't any) to be executed. It does not destroy these tasks.
int starpu_task_wait_for_n_submitted_in_ctx | ( | unsigned | sched_ctx, |
unsigned | n | ||
) |
This function waits until there are n
tasks submitted left to be executed that were already submitted to the context sched_ctx_id
.
int starpu_task_nready | ( | void | ) |
TODO
Return the number of submitted tasks which are ready for execution are already executing. It thus does not include tasks waiting for dependencies.
int starpu_task_nsubmitted | ( | void | ) |
Return the number of submitted tasks which have not completed yet.
|
read |
This function returns the task currently executed by the worker, or NULL
if it is called either from a thread that is not a task or simply because there is no task being executed at the moment.
void starpu_codelet_display_stats | ( | struct starpu_codelet * | cl | ) |
Output on stderr some statistics on the codelet cl
.
int starpu_task_wait_for_no_ready | ( | void | ) |
This function waits until there is no more ready task.
void starpu_task_set_implementation | ( | struct starpu_task * | task, |
unsigned | impl | ||
) |
This function should be called by schedulers to specify the codelet implementation to be executed when executing the task.
unsigned starpu_task_get_implementation | ( | struct starpu_task * | task | ) |
This function return the codelet implementation to be executed when executing the task.
void starpu_create_sync_task | ( | starpu_tag_t | sync_tag, |
unsigned | ndeps, | ||
starpu_tag_t * | deps, | ||
void(*)(void *) | callback, | ||
void * | callback_arg | ||
) |
This creates (and submits) an empty task that unlocks a tag once all its dependencies are fulfilled.