123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2010-2012 Université de Bordeaux 1
- * Copyright (C) 2010 Mehdi Juhoor <mjuhoor@gmail.com>
- * Copyright (C) 2010, 2011 Centre National de la Recherche Scientifique
- * 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.
- */
- #include <math.h>
- #include <starpu.h>
- #include <starpu_profiling.h>
- #include <drivers/driver_common/driver_common.h>
- #include <common/utils.h>
- #include <core/debug.h>
- #include "driver_cpu.h"
- #include <core/sched_policy.h>
- /* Actually launch the job on a cpu worker.
- * Handle binding CPUs on cores.
- * In the case of a combined worker WORKER_TASK != J->TASK */
- static int execute_job_on_cpu(struct _starpu_job *j, struct starpu_task *worker_task, struct _starpu_worker *cpu_args, int rank, enum starpu_perf_archtype perf_arch)
- {
- int ret;
- int is_parallel_task = (j->task_size > 1);
- int profiling = starpu_profiling_status_get();
- struct timespec codelet_start, codelet_end;
- struct starpu_task *task = j->task;
- struct starpu_codelet *cl = task->cl;
- STARPU_ASSERT(cl);
- if (rank == 0)
- {
- ret = _starpu_fetch_task_input(j, 0);
- if (ret != 0)
- {
- /* there was not enough memory so the codelet cannot be executed right now ... */
- /* push the codelet back and try another one ... */
- return -EAGAIN;
- }
- }
- if (is_parallel_task)
- {
- _STARPU_PTHREAD_BARRIER_WAIT(&j->before_work_barrier);
- /* In the case of a combined worker, the scheduler needs to know
- * when each actual worker begins the execution */
- _starpu_sched_pre_exec_hook(worker_task);
- }
- /* Give profiling variable */
- _starpu_driver_start_job(cpu_args, j, &codelet_start, rank, profiling);
- /* In case this is a Fork-join parallel task, the worker does not
- * execute the kernel at all. */
- if ((rank == 0) || (cl->type != STARPU_FORKJOIN))
- {
- _starpu_cl_func_t func = _starpu_task_get_cpu_nth_implementation(cl, j->nimpl);
- if (is_parallel_task && cl->type == STARPU_FORKJOIN)
- /* bind to parallel worker */
- _starpu_bind_thread_on_cpus(cpu_args->config, _starpu_get_combined_worker_struct(j->combined_workerid));
- STARPU_ASSERT(func);
- func(task->interfaces, task->cl_arg);
- if (is_parallel_task && cl->type == STARPU_FORKJOIN)
- /* rebind to single CPU */
- _starpu_bind_thread_on_cpu(cpu_args->config, cpu_args->bindid);
- }
- _starpu_driver_end_job(cpu_args, j, perf_arch, &codelet_end, rank, profiling);
- if (is_parallel_task)
- _STARPU_PTHREAD_BARRIER_WAIT(&j->after_work_barrier);
- if (rank == 0)
- {
- _starpu_driver_update_job_feedback(j, cpu_args,
- perf_arch, &codelet_start, &codelet_end, profiling);
- _starpu_push_task_output(j, 0);
- }
- return 0;
- }
- static struct _starpu_worker*
- _starpu_get_worker_from_driver(struct starpu_driver *d)
- {
- int workers[d->id.cpu_id + 1];
- int nworkers;
- nworkers = starpu_worker_get_ids_by_type(STARPU_CPU_WORKER, workers, d->id.cpu_id+1);
- if (nworkers >= 0 && (unsigned) nworkers < d->id.cpu_id)
- return NULL; // No device was found.
-
- return _starpu_get_worker_struct(workers[d->id.cpu_id]);
- }
- int _starpu_cpu_driver_init(struct starpu_driver *d)
- {
- struct _starpu_worker *cpu_worker;
- cpu_worker = _starpu_get_worker_from_driver(d);
- STARPU_ASSERT(cpu_worker);
- int devid = cpu_worker->devid;
- _starpu_worker_init(cpu_worker, _STARPU_FUT_CPU_KEY);
- snprintf(cpu_worker->name, sizeof(cpu_worker->name), "CPU %d", devid);
- snprintf(cpu_worker->short_name, sizeof(cpu_worker->short_name), "CPU %d", devid);
- cpu_worker->status = STATUS_UNKNOWN;
- _STARPU_TRACE_WORKER_INIT_END
- /* tell the main thread that we are ready */
- _STARPU_PTHREAD_MUTEX_LOCK(&cpu_worker->mutex);
- cpu_worker->worker_is_initialized = 1;
- _STARPU_PTHREAD_COND_SIGNAL(&cpu_worker->ready_cond);
- _STARPU_PTHREAD_MUTEX_UNLOCK(&cpu_worker->mutex);
- return 0;
- }
- int _starpu_cpu_driver_run_once(struct starpu_driver *d)
- {
- struct _starpu_worker *cpu_worker;
- cpu_worker = _starpu_get_worker_from_driver(d);
- STARPU_ASSERT(cpu_worker);
- unsigned memnode = cpu_worker->memory_node;
- int workerid = cpu_worker->workerid;
- _STARPU_TRACE_START_PROGRESS(memnode);
- _starpu_datawizard_progress(memnode, 1);
- _STARPU_TRACE_END_PROGRESS(memnode);
- struct _starpu_job *j;
- struct starpu_task *task;
- int res;
- task = _starpu_get_worker_task(cpu_worker, workerid, memnode);
- if (!task)
- return 0;
- j = _starpu_get_job_associated_to_task(task);
- /* can a cpu perform that task ? */
- if (!_STARPU_CPU_MAY_PERFORM(j))
- {
- /* put it and the end of the queue ... XXX */
- _starpu_push_task(j);
- return 0;
- }
- int rank = 0;
- int is_parallel_task = (j->task_size > 1);
- enum starpu_perf_archtype perf_arch;
- /* Get the rank in case it is a parallel task */
- if (is_parallel_task)
- {
- _STARPU_PTHREAD_MUTEX_LOCK(&j->sync_mutex);
- rank = j->active_task_alias_count++;
- _STARPU_PTHREAD_MUTEX_UNLOCK(&j->sync_mutex);
- struct _starpu_combined_worker *combined_worker;
- combined_worker = _starpu_get_combined_worker_struct(j->combined_workerid);
- cpu_worker->combined_workerid = j->combined_workerid;
- cpu_worker->worker_size = combined_worker->worker_size;
- cpu_worker->current_rank = rank;
- perf_arch = combined_worker->perf_arch;
- }
- else
- {
- cpu_worker->combined_workerid = cpu_worker->workerid;
- cpu_worker->worker_size = 1;
- cpu_worker->current_rank = 0;
- perf_arch = cpu_worker->perf_arch;
- }
- _starpu_set_current_task(j->task);
- cpu_worker->current_task = j->task;
- res = execute_job_on_cpu(j, task, cpu_worker, rank, perf_arch);
- _starpu_set_current_task(NULL);
- cpu_worker->current_task = NULL;
- if (res)
- {
- switch (res)
- {
- case -EAGAIN:
- _starpu_push_task(j);
- return 0;
- default:
- STARPU_ABORT();
- }
- }
- /* In the case of combined workers, we need to inform the
- * scheduler each worker's execution is over.
- * Then we free the workers' task alias */
- if (is_parallel_task)
- {
- _starpu_sched_post_exec_hook(task);
- free(task);
- }
- if (rank == 0)
- _starpu_handle_job_termination(j);
- return 0;
- }
- int _starpu_cpu_driver_deinit(struct starpu_driver *d)
- {
- _STARPU_TRACE_WORKER_DEINIT_START
- struct _starpu_worker *cpu_worker;
- cpu_worker = _starpu_get_worker_from_driver(d);
- STARPU_ASSERT(cpu_worker);
- unsigned memnode = cpu_worker->memory_node;
- _starpu_handle_all_pending_node_data_requests(memnode);
- /* In case there remains some memory that was automatically
- * allocated by StarPU, we release it now. Note that data
- * coherency is not maintained anymore at that point ! */
- _starpu_free_all_automatically_allocated_buffers(memnode);
- _STARPU_TRACE_WORKER_DEINIT_END(_STARPU_FUT_CPU_KEY);
- return 0;
- }
- void *
- _starpu_cpu_worker(void *arg)
- {
- struct _starpu_worker *args = arg;
- struct starpu_driver d =
- {
- .type = STARPU_CPU_WORKER,
- .id.cpu_id = args->devid
- };
- _starpu_cpu_driver_init(&d);
- while (_starpu_machine_is_running())
- _starpu_cpu_driver_run_once(&d);
- _starpu_cpu_driver_deinit(&d);
- return NULL;
- }
- int _starpu_run_cpu(struct starpu_driver *d)
- {
- STARPU_ASSERT(d && d->type == STARPU_CPU_WORKER);
- struct _starpu_worker *worker = _starpu_get_worker_from_driver(d);
- STARPU_ASSERT(worker);
- worker->set = NULL;
- worker->worker_is_initialized = 0;
- _starpu_cpu_worker(worker);
- return 0;
- }
|