| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2008-2021 Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
- * Copyright (C) 2013 Simon Archipoff
- * Copyright (C) 2016 Uppsala University
- *
- * 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.
- */
- /*
- * This is just the trivial policy where every worker use the same
- * JOB QUEUE.
- */
- #include <starpu_scheduler.h>
- #include <sched_policies/fifo_queues.h>
- #include <common/thread.h>
- #include <starpu_bitmap.h>
- #include <core/workers.h>
- struct _starpu_eager_center_policy_data
- {
- struct _starpu_fifo_taskq fifo;
- starpu_pthread_mutex_t policy_mutex;
- struct starpu_bitmap waiters;
- };
- static void initialize_eager_center_policy(unsigned sched_ctx_id)
- {
- struct _starpu_eager_center_policy_data *data;
- _STARPU_MALLOC(data, sizeof(struct _starpu_eager_center_policy_data));
- /* there is only a single queue in that trivial design */
- _starpu_init_fifo(&data->fifo);
- starpu_bitmap_init(&data->waiters);
- starpu_sched_ctx_set_policy_data(sched_ctx_id, (void*)data);
- STARPU_PTHREAD_MUTEX_INIT(&data->policy_mutex, NULL);
- }
- static void deinitialize_eager_center_policy(unsigned sched_ctx_id)
- {
- struct _starpu_eager_center_policy_data *data = (struct _starpu_eager_center_policy_data*)starpu_sched_ctx_get_policy_data(sched_ctx_id);
- struct _starpu_fifo_taskq *fifo = &data->fifo;
- STARPU_ASSERT(starpu_task_list_empty(&fifo->taskq));
- STARPU_PTHREAD_MUTEX_DESTROY(&data->policy_mutex);
- free(data);
- }
- static int push_task_eager_policy(struct starpu_task *task)
- {
- unsigned sched_ctx_id = task->sched_ctx;
- struct _starpu_eager_center_policy_data *data = (struct _starpu_eager_center_policy_data*)starpu_sched_ctx_get_policy_data(sched_ctx_id);
- starpu_worker_relax_on();
- STARPU_PTHREAD_MUTEX_LOCK(&data->policy_mutex);
- starpu_worker_relax_off();
- starpu_task_list_push_back(&data->fifo.taskq,task);
- data->fifo.ntasks++;
- data->fifo.nprocessed++;
- if (_starpu_get_nsched_ctxs() > 1)
- {
- starpu_worker_relax_on();
- _starpu_sched_ctx_lock_write(sched_ctx_id);
- starpu_worker_relax_off();
- starpu_sched_ctx_list_task_counters_increment_all_ctx_locked(task, sched_ctx_id);
- _starpu_sched_ctx_unlock_write(sched_ctx_id);
- }
- starpu_push_task_end(task);
- /*if there are no tasks block */
- /* wake people waiting for a task */
- struct starpu_worker_collection *workers = starpu_sched_ctx_get_worker_collection(sched_ctx_id);
- struct starpu_sched_ctx_iterator it;
- #ifndef STARPU_NON_BLOCKING_DRIVERS
- char dowake[STARPU_NMAXWORKERS] = { 0 };
- #endif
- workers->init_iterator_for_parallel_tasks(workers, &it, task);
- while(workers->has_next(workers, &it))
- {
- unsigned worker = workers->get_next(workers, &it);
- #ifdef STARPU_NON_BLOCKING_DRIVERS
- if (!starpu_bitmap_get(&data->waiters, worker))
- /* This worker is not waiting for a task */
- continue;
- #endif
- if (starpu_worker_can_execute_task_first_impl(worker, task, NULL))
- {
- /* It can execute this one, tell him! */
- #ifdef STARPU_NON_BLOCKING_DRIVERS
- starpu_bitmap_unset(&data->waiters, worker);
- /* We really woke at least somebody, no need to wake somebody else */
- break;
- #else
- dowake[worker] = 1;
- #endif
- }
- }
- /* Let the task free */
- STARPU_PTHREAD_MUTEX_UNLOCK(&data->policy_mutex);
- #if !defined(STARPU_NON_BLOCKING_DRIVERS) || defined(STARPU_SIMGRID)
- /* Now that we have a list of potential workers, try to wake one */
- workers->init_iterator_for_parallel_tasks(workers, &it, task);
- while(workers->has_next(workers, &it))
- {
- unsigned worker = workers->get_next(workers, &it);
- if (dowake[worker])
- if (starpu_wake_worker_relax_light(worker))
- break; // wake up a single worker
- }
- #endif
- return 0;
- }
- static struct starpu_task *pop_every_task_eager_policy(unsigned sched_ctx_id)
- {
- struct _starpu_eager_center_policy_data *data = (struct _starpu_eager_center_policy_data*)starpu_sched_ctx_get_policy_data(sched_ctx_id);
- unsigned workerid = starpu_worker_get_id_check();
- STARPU_PTHREAD_MUTEX_LOCK(&data->policy_mutex);
- struct starpu_task* task = _starpu_fifo_pop_every_task(&data->fifo, workerid);
- STARPU_PTHREAD_MUTEX_UNLOCK(&data->policy_mutex);
- starpu_sched_ctx_list_task_counters_reset_all(task, sched_ctx_id);
- return task;
- }
- static struct starpu_task *pop_task_eager_policy(unsigned sched_ctx_id)
- {
- struct starpu_task *chosen_task = NULL;
- unsigned workerid = starpu_worker_get_id_check();
- struct _starpu_eager_center_policy_data *data = (struct _starpu_eager_center_policy_data*)starpu_sched_ctx_get_policy_data(sched_ctx_id);
- /* Here helgrind would shout that this is unprotected, this is just an
- * integer access, and we hold the sched mutex, so we can not miss any
- * wake up. */
- if (!STARPU_RUNNING_ON_VALGRIND && _starpu_fifo_empty(&data->fifo))
- {
- return NULL;
- }
- #ifdef STARPU_NON_BLOCKING_DRIVERS
- if (!STARPU_RUNNING_ON_VALGRIND && starpu_bitmap_get(&data->waiters, workerid))
- /* Nobody woke us, avoid bothering the mutex */
- {
- return NULL;
- }
- #endif
- starpu_worker_relax_on();
- STARPU_PTHREAD_MUTEX_LOCK(&data->policy_mutex);
- starpu_worker_relax_off();
- chosen_task = _starpu_fifo_pop_task(&data->fifo, workerid);
- if (!chosen_task)
- /* Tell pushers that we are waiting for tasks for us */
- starpu_bitmap_set(&data->waiters, workerid);
- STARPU_PTHREAD_MUTEX_UNLOCK(&data->policy_mutex);
- if(chosen_task &&_starpu_get_nsched_ctxs() > 1)
- {
- starpu_worker_relax_on();
- _starpu_sched_ctx_lock_write(sched_ctx_id);
- starpu_worker_relax_off();
- starpu_sched_ctx_list_task_counters_decrement_all_ctx_locked(chosen_task, sched_ctx_id);
- if (_starpu_sched_ctx_worker_is_master_for_child_ctx(sched_ctx_id, workerid, chosen_task))
- chosen_task = NULL;
- _starpu_sched_ctx_unlock_write(sched_ctx_id);
- }
- return chosen_task;
- }
- static void eager_add_workers(unsigned sched_ctx_id, int *workerids, unsigned nworkers)
- {
- unsigned i;
- for (i = 0; i < nworkers; i++)
- {
- int workerid = workerids[i];
- int curr_workerid = _starpu_worker_get_id();
- if(workerid != curr_workerid)
- starpu_wake_worker_locked(workerid);
- starpu_sched_ctx_worker_shares_tasks_lists(workerid, sched_ctx_id);
- }
- }
- struct starpu_sched_policy _starpu_sched_eager_policy =
- {
- .init_sched = initialize_eager_center_policy,
- .deinit_sched = deinitialize_eager_center_policy,
- .add_workers = eager_add_workers,
- .remove_workers = NULL,
- .push_task = push_task_eager_policy,
- .pop_task = pop_task_eager_policy,
- .pre_exec_hook = NULL,
- .post_exec_hook = NULL,
- .pop_every_task = pop_every_task_eager_policy,
- .policy_name = "eager",
- .policy_description = "eager policy with a central queue",
- .worker_type = STARPU_WORKER_LIST,
- };
|