123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2010-2013 Université de Bordeaux 1
- * Copyright (C) 2011 Télécom-SudParis
- *
- * StarPU is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2.1 of the License, or (at
- * your option) any later version.
- *
- * StarPU is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU Lesser General Public License in COPYING.LGPL for more details.
- */
- #ifndef __STARPU_SCHEDULER_H__
- #define __STARPU_SCHEDULER_H__
- #include <starpu.h>
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- struct starpu_task;
- /* This structure contains all the methods that implement a scheduling policy.
- * An application may specify which scheduling strategy in the "sched_policy"
- * field of the starpu_conf structure passed to the starpu_init function. */
- struct starpu_sched_policy
- {
- /* Initialize the scheduling policy. */
- void (*init_sched)(unsigned sched_ctx_id);
- /* Cleanup the scheduling policy. */
- void (*deinit_sched)(unsigned sched_ctx_id);
- /* Insert a task into the scheduler. */
- int (*push_task)(struct starpu_task *);
- /* Notify the scheduler that a task was directly pushed to the worker
- * without going through the scheduler. This method is called when a
- * task is explicitely assigned to a worker. This method therefore
- * permits to keep the timing state of the scheduler coherent even
- * when StarPU bypasses the scheduling strategy. */
- void (*push_task_notify)(struct starpu_task *, int workerid, unsigned sched_ctx_id);
- /* Get a task from the scheduler. The mutex associated to the worker is
- * already taken when this method is called. */
- struct starpu_task *(*pop_task)(unsigned sched_ctx_id);
- /* Remove all available tasks from the scheduler (tasks are chained by
- * the means of the prev and next fields of the starpu_task
- * structure). The mutex associated to the worker is already taken
- * when this method is called. */
- struct starpu_task *(*pop_every_task)(unsigned sched_ctx_id);
- /* This method is called every time a task is starting. (optional) */
- void (*pre_exec_hook)(struct starpu_task *);
- /* This method is called every time a task has been executed. (optional) */
- void (*post_exec_hook)(struct starpu_task *);
- /* Initialize scheduling structures corresponding to each worker. */
- void (*add_workers)(unsigned sched_ctx_id, int *workerids, unsigned nworkers);
- /* Deinitialize scheduling structures corresponding to each worker. */
- void (*remove_workers)(unsigned sched_ctx_id, int *workerids, unsigned nworkers);
- /* Name of the policy (optionnal) */
- const char *policy_name;
- /* Description of the policy (optionnal) */
- const char *policy_description;
- };
- struct starpu_sched_policy **starpu_sched_get_predefined_policies();
- /* When there is no available task for a worker, StarPU blocks this worker on a
- condition variable. This function specifies which condition variable (and the
- associated mutex) should be used to block (and to wake up) a worker. Note that
- multiple workers may use the same condition variable. For instance, in the case
- of a scheduling strategy with a single task queue, the same condition variable
- would be used to block and wake up all workers. */
- void starpu_worker_get_sched_condition(int workerid, starpu_pthread_mutex_t **sched_mutex, starpu_pthread_cond_t **sched_cond);
- /* Check if the worker specified by workerid can execute the codelet. */
- int starpu_worker_can_execute_task(unsigned workerid, struct starpu_task *task, unsigned nimpl);
- /* The scheduling policy may put tasks directly into a worker's local queue so
- * that it is not always necessary to create its own queue when the local queue
- * is sufficient. If "back" not null, the task is put at the back of the queue
- * where the worker will pop tasks first. Setting "back" to 0 therefore ensures
- * a FIFO ordering. */
- int starpu_push_local_task(int workerid, struct starpu_task *task, int back);
- /* Called by scheduler to notify that the task has just been pushed */
- int starpu_push_task_end(struct starpu_task *task);
- /*
- * Parallel tasks
- */
- /* Register a new combined worker and get its identifier */
- int starpu_combined_worker_assign_workerid(int nworkers, int workerid_array[]);
- /* Get the description of a combined worker */
- int starpu_combined_worker_get_description(int workerid, int *worker_size, int **combined_workerid);
- /* Variant of starpu_worker_can_execute_task compatible with combined workers */
- int starpu_combined_worker_can_execute_task(unsigned workerid, struct starpu_task *task, unsigned nimpl);
- /*
- * Data prefetching
- */
- /* Whether STARPU_PREFETCH was set */
- int starpu_get_prefetch_flag(void);
- /* Prefetch data for a given task on a given node */
- int starpu_prefetch_task_input_on_node(struct starpu_task *task, unsigned node);
- /*
- * Performance predictions
- */
- /* Returns the perfmodel footprint for the task */
- uint32_t starpu_task_footprint(struct starpu_perfmodel *model, struct starpu_task *task, enum starpu_perf_archtype arch, unsigned nimpl);
- /* Returns expected task duration in us */
- double starpu_task_expected_length(struct starpu_task *task, enum starpu_perf_archtype arch, unsigned nimpl);
- /* Returns an estimated speedup factor relative to CPU speed */
- double starpu_worker_get_relative_speedup(enum starpu_perf_archtype perf_archtype);
- /* Returns expected data transfer time in us */
- double starpu_task_expected_data_transfer_time(unsigned memory_node, struct starpu_task *task);
- /* Predict the transfer time (in us) to move a handle to a memory node */
- double starpu_data_expected_transfer_time(starpu_data_handle_t handle, unsigned memory_node, enum starpu_access_mode mode);
- /* Returns expected power consumption in J */
- double starpu_task_expected_power(struct starpu_task *task, enum starpu_perf_archtype arch, unsigned nimpl);
- /* Returns expected conversion time in ms (multiformat interface only) */
- double starpu_task_expected_conversion_time(struct starpu_task *task, enum starpu_perf_archtype arch, unsigned nimpl);
- /* Return the expected duration of the entire task bundle in us. */
- double starpu_task_bundle_expected_length(starpu_task_bundle_t bundle, enum starpu_perf_archtype arch, unsigned nimpl);
- /* Return the time (in us) expected to transfer all data used within the bundle */
- double starpu_task_bundle_expected_data_transfer_time(starpu_task_bundle_t bundle, unsigned memory_node);
- /* Return the expected power consumption of the entire task bundle in J. */
- double starpu_task_bundle_expected_power(starpu_task_bundle_t bundle, enum starpu_perf_archtype arch, unsigned nimpl);
- #ifdef __cplusplus
- }
- #endif
- #endif /* __STARPU_SCHEDULER_H__ */
|