123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2009, 2010-2011 Université de Bordeaux 1
- * Copyright (C) 2010 Centre National de la Recherche Scientifique
- *
- * 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 __WORKERS_H__
- #define __WORKERS_H__
- #include <starpu.h>
- #include <starpu_scheduler.h>
- #include <common/config.h>
- #include <pthread.h>
- #include <common/timing.h>
- #include <common/fxt.h>
- #include <core/jobs.h>
- #include <core/perfmodel/perfmodel.h>
- #include <core/sched_policy.h>
- #include <core/topology.h>
- #include <core/errorcheck.h>
- #ifdef STARPU_HAVE_HWLOC
- #include <hwloc.h>
- #endif
- #ifdef STARPU_USE_CUDA
- #include <drivers/cuda/driver_cuda.h>
- #endif
- #ifdef STARPU_USE_OPENCL
- #include <drivers/opencl/driver_opencl.h>
- #endif
- #ifdef STARPU_USE_GORDON
- #include <drivers/gordon/driver_gordon.h>
- #endif
- #include <drivers/cpu/driver_cpu.h>
- #include <datawizard/datawizard.h>
- #include <starpu_parameters.h>
- struct starpu_worker_s {
- struct starpu_machine_config_s *config;
- pthread_mutex_t mutex;
- enum starpu_archtype arch; /* what is the type of worker ? */
- uint32_t worker_mask; /* what is the type of worker ? */
- enum starpu_perf_archtype perf_arch; /* in case there are different models of the same arch */
- pthread_t worker_thread; /* the thread which runs the worker */
- int devid; /* which cpu/gpu/etc is controlled by the workker ? */
- int bindid; /* which cpu is the driver bound to ? */
- int workerid; /* uniquely identify the worker among all processing units types */
- int combined_workerid; /* combined worker currently using this worker */
- int current_rank; /* current rank in case the worker is used in a parallel fashion */
- int worker_size; /* size of the worker in case we use a combined worker */
- pthread_cond_t ready_cond; /* indicate when the worker is ready */
- unsigned memory_node; /* which memory node is associated that worker to ? */
- pthread_cond_t *sched_cond; /* condition variable used when the worker waits for tasks. */
- pthread_mutex_t *sched_mutex; /* mutex protecting sched_cond */
- struct starpu_task_list local_tasks; /* this queue contains tasks that have been explicitely submitted to that queue */
- struct starpu_worker_set_s *set; /* in case this worker belongs to a set */
- struct starpu_job_list_s *terminated_jobs; /* list of pending jobs which were executed */
- unsigned worker_is_running;
- unsigned worker_is_initialized;
- starpu_worker_status status; /* what is the worker doing now ? (eg. CALLBACK) */
- char name[32];
- #ifdef __GLIBC__
- cpu_set_t initial_cpu_set;
- cpu_set_t current_cpu_set;
- #endif /* __GLIBC__ */
- #ifdef STARPU_HAVE_HWLOC
- hwloc_cpuset_t initial_hwloc_cpu_set;
- hwloc_cpuset_t current_hwloc_cpu_set;
- #endif
- };
- struct starpu_combined_worker_s {
- enum starpu_perf_archtype perf_arch; /* in case there are different models of the same arch */
- uint32_t worker_mask; /* what is the type of workers ? */
- int worker_size;
- unsigned memory_node; /* which memory node is associated that worker to ? */
- int combined_workerid[STARPU_NMAXWORKERS];
- #ifdef __GLIBC__
- cpu_set_t cpu_set;
- #endif /* __GLIBC__ */
- #ifdef STARPU_HAVE_HWLOC
- hwloc_cpuset_t hwloc_cpu_set;
- #endif
- };
- /* in case a single CPU worker may control multiple
- * accelerators (eg. Gordon for n SPUs) */
- struct starpu_worker_set_s {
- pthread_mutex_t mutex;
- pthread_t worker_thread; /* the thread which runs the worker */
- unsigned nworkers;
- unsigned joined; /* only one thread may call pthread_join*/
- void *retval;
- struct starpu_worker_s *workers;
- pthread_cond_t ready_cond; /* indicate when the set is ready */
- unsigned set_is_initialized;
- };
- struct starpu_machine_config_s {
- struct starpu_machine_topology_s topology;
- #ifdef STARPU_HAVE_HWLOC
- int cpu_depth;
- #endif
- /* Where to bind workers ? */
- int current_bindid;
-
- /* Which GPU(s) do we use for CUDA ? */
- int current_cuda_gpuid;
- /* Which GPU(s) do we use for OpenCL ? */
- int current_opencl_gpuid;
-
- /* Basic workers : each of this worker is running its own driver and
- * can be combined with other basic workers. */
- struct starpu_worker_s workers[STARPU_NMAXWORKERS];
- /* Combined workers: these worker are a combination of basic workers
- * that can run parallel tasks together. */
- struct starpu_combined_worker_s combined_workers[STARPU_NMAX_COMBINEDWORKERS];
- /* This bitmask indicates which kinds of worker are available. For
- * instance it is possible to test if there is a CUDA worker with
- * the result of (worker_mask & STARPU_CUDA). */
- uint32_t worker_mask;
- /* in case the user gives an explicit configuration, this is only valid
- * during starpu_init. */
- struct starpu_conf *user_conf;
- /* this flag is set until the runtime is stopped */
- unsigned running;
- };
- /* Has starpu_shutdown already been called ? */
- unsigned _starpu_machine_is_running(void);
- /* Check if there is a worker that may execute the task. */
- uint32_t _starpu_worker_exists(uint32_t task_mask);
- /* Is there a worker that can execute CUDA code ? */
- uint32_t _starpu_may_submit_cuda_task(void);
- /* Is there a worker that can execute CPU code ? */
- uint32_t _starpu_may_submit_cpu_task(void);
- /* Is there a worker that can execute OpenCL code ? */
- uint32_t _starpu_may_submit_opencl_task(void);
- /* Check whether there is anything that the worker should do instead of
- * sleeping (waiting on something to happen). */
- unsigned _starpu_worker_can_block(unsigned memnode);
- /* This function must be called to block a worker. It puts the worker in a
- * sleeping state until there is some event that forces the worker to wake up.
- * */
- void _starpu_block_worker(int workerid, pthread_cond_t *cond, pthread_mutex_t *mutex);
- /* The starpu_worker_s structure describes all the state of a StarPU worker.
- * This function sets the pthread key which stores a pointer to this structure.
- * */
- void _starpu_set_local_worker_key(struct starpu_worker_s *worker);
- /* Returns the starpu_worker_s structure that describes the state of the
- * current worker. */
- struct starpu_worker_s *_starpu_get_local_worker_key(void);
- /* Returns the starpu_worker_s structure that describes the state of the
- * specified worker. */
- struct starpu_worker_s *_starpu_get_worker_struct(unsigned id);
- struct starpu_combined_worker_s *_starpu_get_combined_worker_struct(unsigned id);
- /* Returns the structure that describes the overall machine configuration (eg.
- * all workers and topology). */
- struct starpu_machine_config_s *_starpu_get_machine_config(void);
- /* Retrieve the status which indicates what the worker is currently doing. */
- starpu_worker_status _starpu_worker_get_status(int workerid);
- /* Change the status of the worker which indicates what the worker is currently
- * doing (eg. executing a callback). */
- void _starpu_worker_set_status(int workerid, starpu_worker_status status);
- /* TODO move */
- unsigned _starpu_execute_registered_progression_hooks(void);
- #endif // __WORKERS_H__
|