1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2009-2012 Université de Bordeaux 1
- * Copyright (C) 2010, 2011, 2012 Centre National de la Recherche Scientifique
- * Copyright (C) 2011 INRIA
- *
- * 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 <stdlib.h>
- #include <stdio.h>
- #include <common/config.h>
- #include <core/workers.h>
- #include <core/debug.h>
- #include <core/topology.h>
- #include <drivers/cuda/driver_cuda.h>
- #include <drivers/opencl/driver_opencl.h>
- #include <profiling/profiling.h>
- #include <common/uthash.h>
- #ifdef STARPU_HAVE_HWLOC
- #include <hwloc.h>
- #ifndef HWLOC_API_VERSION
- #define HWLOC_OBJ_PU HWLOC_OBJ_PROC
- #endif
- #endif
- #ifdef STARPU_HAVE_WINDOWS
- #include <windows.h>
- #endif
- static unsigned topology_is_initialized = 0;
- #if defined(STARPU_USE_CUDA) || defined(STARPU_USE_OPENCL)
- struct handle_entry
- {
- UT_hash_handle hh;
- unsigned gpuid;
- };
- # ifdef STARPU_USE_CUDA
- /* Entry in the `devices_using_cuda' hash table. */
- static struct handle_entry *devices_using_cuda;
- # endif
- static unsigned may_bind_automatically = 0;
- #endif // defined(STARPU_USE_CUDA) || defined(STARPU_USE_OPENCL)
- /*
- * Discover the topology of the machine
- */
- #if defined(STARPU_USE_CUDA) || defined(STARPU_USE_OPENCL)
- static void
- _starpu_initialize_workers_gpuid (int *explicit_workers_gpuid,
- int *current, int *workers_gpuid,
- const char *varname, unsigned nhwgpus)
- {
- char *strval;
- unsigned i;
- *current = 0;
- /* conf->workers_bindid indicates the successive cpu identifier that
- * should be used to bind the workers. It should be either filled
- * according to the user's explicit parameters (from starpu_conf) or
- * according to the STARPU_WORKERS_CPUID env. variable. Otherwise, a
- * round-robin policy is used to distributed the workers over the
- * cpus. */
- /* what do we use, explicit value, env. variable, or round-robin ? */
- if ((strval = getenv(varname)))
- {
- /* STARPU_WORKERS_CUDAID certainly contains less entries than
- * STARPU_NMAXWORKERS, so we reuse its entries in a round
- * robin fashion: "1 2" is equivalent to "1 2 1 2 1 2 .... 1
- * 2". */
- unsigned wrap = 0;
- unsigned number_of_entries = 0;
- char *endptr;
- /* we use the content of the STARPU_WORKERS_CUDAID
- * env. variable */
- for (i = 0; i < STARPU_NMAXWORKERS; i++)
- {
- if (!wrap)
- {
- long int val;
- val = strtol(strval, &endptr, 10);
- if (endptr != strval)
- {
- workers_gpuid[i] = (unsigned)val;
- strval = endptr;
- }
- else
- {
- /* there must be at least one entry */
- STARPU_ASSERT(i != 0);
- number_of_entries = i;
- /* there is no more values in the
- * string */
- wrap = 1;
- workers_gpuid[i] = workers_gpuid[0];
- }
- }
- else
- {
- workers_gpuid[i] =
- workers_gpuid[i % number_of_entries];
- }
- }
- }
- else if (explicit_workers_gpuid)
- {
- /* we use the explicit value from the user */
- memcpy(workers_gpuid,
- explicit_workers_gpuid,
- STARPU_NMAXWORKERS*sizeof(unsigned));
- }
- else
- {
- /* by default, we take a round robin policy */
- if (nhwgpus > 0)
- for (i = 0; i < STARPU_NMAXWORKERS; i++)
- workers_gpuid[i] = (unsigned)(i % nhwgpus);
- /* StarPU can use sampling techniques to bind threads
- * correctly */
- may_bind_automatically = 1;
- }
- }
- #endif
- #ifdef STARPU_USE_CUDA
- static void
- _starpu_initialize_workers_cuda_gpuid (struct _starpu_machine_config *config)
- {
- struct starpu_machine_topology *topology = &config->topology;
- struct starpu_conf *uconf = config->conf;
- _starpu_initialize_workers_gpuid (
- uconf->use_explicit_workers_cuda_gpuid == 0
- ? NULL
- : (int *)uconf->workers_cuda_gpuid,
- &(config->current_cuda_gpuid),
- (int *)topology->workers_cuda_gpuid,
- "STARPU_WORKERS_CUDAID",
- topology->nhwcudagpus);
- }
- static inline int
- _starpu_get_next_cuda_gpuid (struct _starpu_machine_config *config)
- {
- unsigned i =
- ((config->current_cuda_gpuid++) % config->topology.ncudagpus);
- return (int)config->topology.workers_cuda_gpuid[i];
- }
- #endif
- #ifdef STARPU_USE_OPENCL
- static void
- _starpu_initialize_workers_opencl_gpuid (struct _starpu_machine_config*config)
- {
- struct starpu_machine_topology *topology = &config->topology;
- struct starpu_conf *uconf = config->conf;
- _starpu_initialize_workers_gpuid(
- uconf->use_explicit_workers_opencl_gpuid == 0
- ? NULL
- : (int *)uconf->workers_opencl_gpuid,
- &(config->current_opencl_gpuid),
- (int *)topology->workers_opencl_gpuid,
- "STARPU_WORKERS_OPENCLID",
- topology->nhwopenclgpus);
- #ifdef STARPU_USE_CUDA
- // Detect devices which are already used with CUDA
- {
- unsigned tmp[STARPU_NMAXWORKERS];
- unsigned nb=0;
- int i;
- for(i=0 ; i<STARPU_NMAXWORKERS ; i++)
- {
- struct handle_entry *entry;
- int devid = config->topology.workers_opencl_gpuid[i];
- HASH_FIND_INT(devices_using_cuda, &devid, entry);
- if (entry == NULL)
- {
- tmp[nb] = topology->workers_opencl_gpuid[i];
- nb++;
- }
- }
- for (i=nb ; i<STARPU_NMAXWORKERS ; i++)
- tmp[i] = -1;
- memcpy (topology->workers_opencl_gpuid, tmp,
- sizeof(unsigned)*STARPU_NMAXWORKERS);
- }
- #endif /* STARPU_USE_CUDA */
- {
- // Detect identical devices
- struct handle_entry *devices_already_used = NULL;
- unsigned tmp[STARPU_NMAXWORKERS];
- unsigned nb=0;
- int i;
- for(i=0 ; i<STARPU_NMAXWORKERS ; i++)
- {
- int devid = topology->workers_opencl_gpuid[i];
- struct handle_entry *entry;
- HASH_FIND_INT(devices_already_used, &devid, entry);
- if (entry == NULL)
- {
- struct handle_entry *entry2;
- entry2 = (struct handle_entry *) malloc(sizeof(*entry2));
- STARPU_ASSERT(entry2 != NULL);
- entry2->gpuid = devid;
- HASH_ADD_INT(devices_already_used, gpuid,
- entry2);
- tmp[nb] = devid;
- nb ++;
- }
- }
- for (i=nb ; i<STARPU_NMAXWORKERS ; i++)
- tmp[i] = -1;
- memcpy (topology->workers_opencl_gpuid, tmp,
- sizeof(unsigned)*STARPU_NMAXWORKERS);
- }
- }
- static inline int
- _starpu_get_next_opencl_gpuid (struct _starpu_machine_config *config)
- {
- unsigned i =
- ((config->current_opencl_gpuid++) % config->topology.nopenclgpus);
- return (int)config->topology.workers_opencl_gpuid[i];
- }
- #endif
- static void
- _starpu_init_topology (struct _starpu_machine_config *config)
- {
- /* Discover the topology, meaning finding all the available PUs for
- the compiled drivers. These drivers MUST have been initialized
- before calling this function. The discovered topology is filled in
- CONFIG. */
- struct starpu_machine_topology *topology = &config->topology;
- if (topology_is_initialized)
- return;
- topology->nhwcpus = 0;
- #ifdef STARPU_HAVE_HWLOC
- hwloc_topology_init(&topology->hwtopology);
- hwloc_topology_load(topology->hwtopology);
- #endif
- _starpu_cpu_discover_devices(config);
- _starpu_cuda_discover_devices(config);
- _starpu_opencl_discover_devices(config);
- topology_is_initialized = 1;
- }
- /*
- * Bind workers on the different processors
- */
- static void
- _starpu_initialize_workers_bindid (struct _starpu_machine_config *config)
- {
- char *strval;
- unsigned i;
- struct starpu_machine_topology *topology = &config->topology;
- config->current_bindid = 0;
- /* conf->workers_bindid indicates the successive cpu identifier that
- * should be used to bind the workers. It should be either filled
- * according to the user's explicit parameters (from starpu_conf) or
- * according to the STARPU_WORKERS_CPUID env. variable. Otherwise, a
- * round-robin policy is used to distributed the workers over the
- * cpus. */
- /* what do we use, explicit value, env. variable, or round-robin ? */
- if ((strval = getenv("STARPU_WORKERS_CPUID")))
- {
- /* STARPU_WORKERS_CPUID certainly contains less entries than
- * STARPU_NMAXWORKERS, so we reuse its entries in a round
- * robin fashion: "1 2" is equivalent to "1 2 1 2 1 2 .... 1
- * 2". */
- unsigned wrap = 0;
- unsigned number_of_entries = 0;
- char *endptr;
- /* we use the content of the STARPU_WORKERS_CUDAID
- * env. variable */
- for (i = 0; i < STARPU_NMAXWORKERS; i++)
- {
- if (!wrap)
- {
- long int val;
- val = strtol(strval, &endptr, 10);
- if (endptr != strval)
- {
- topology->workers_bindid[i] =
- (unsigned)(val % topology->nhwcpus);
- strval = endptr;
- }
- else
- {
- /* there must be at least one entry */
- STARPU_ASSERT(i != 0);
- number_of_entries = i;
- /* there is no more values in the
- * string */
- wrap = 1;
- topology->workers_bindid[i] =
- topology->workers_bindid[0];
- }
- }
- else
- {
- topology->workers_bindid[i] =
- topology->workers_bindid[i % number_of_entries];
- }
- }
- }
- else if (config->conf->use_explicit_workers_bindid)
- {
- /* we use the explicit value from the user */
- memcpy(topology->workers_bindid,
- config->conf->workers_bindid,
- STARPU_NMAXWORKERS*sizeof(unsigned));
- }
- else
- {
- /* by default, we take a round robin policy */
- for (i = 0; i < STARPU_NMAXWORKERS; i++)
- topology->workers_bindid[i] =
- (unsigned)(i % topology->nhwcpus);
- }
- }
- /* This function gets the identifier of the next cpu on which to bind a
- * worker. In case a list of preferred cpus was specified, we look for a an
- * available cpu among the list if possible, otherwise a round-robin policy is
- * used. */
- static inline int
- _starpu_get_next_bindid (struct _starpu_machine_config *config,
- int *preferred_binding, int npreferred)
- {
- struct starpu_machine_topology *topology = &config->topology;
- unsigned found = 0;
- int current_preferred;
- for (current_preferred = 0;
- current_preferred < npreferred;
- current_preferred++)
- {
- if (found)
- break;
- unsigned requested_cpu = preferred_binding[current_preferred];
- /* can we bind the worker on the requested cpu ? */
- unsigned ind;
- for (ind = config->current_bindid;
- ind < topology->nhwcpus;
- ind++)
- {
- if (topology->workers_bindid[ind] == requested_cpu)
- {
- /* the cpu is available, we use it ! In order
- * to make sure that it will not be used again
- * later on, we remove the entry from the
- * list */
- topology->workers_bindid[ind] =
- topology->workers_bindid[config->current_bindid];
- topology->workers_bindid[config->current_bindid] = requested_cpu;
- found = 1;
- break;
- }
- }
- }
- unsigned i = ((config->current_bindid++) % STARPU_NMAXWORKERS);
- return (int)topology->workers_bindid[i];
- }
- unsigned
- _starpu_topology_get_nhwcpu (struct _starpu_machine_config *config)
- {
- #ifdef STARPU_USE_OPENCL
- _starpu_opencl_init();
- #endif
- #ifdef STARPU_USE_CUDA
- _starpu_init_cuda();
- #endif
- _starpu_init_topology(config);
- return config->topology.nhwcpus;
- }
- static int
- _starpu_init_machine_config (struct _starpu_machine_config *config)
- {
- int i;
- for (i = 0; i < STARPU_NMAXWORKERS; i++)
- config->workers[i].workerid = i;
- struct starpu_machine_topology *topology = &config->topology;
- topology->nworkers = 0;
- topology->ncombinedworkers = 0;
- topology->nsched_ctxs = 0;
- #ifdef STARPU_USE_OPENCL
- _starpu_opencl_init();
- #endif
- #ifdef STARPU_USE_CUDA
- _starpu_init_cuda();
- #endif
- _starpu_init_topology(config);
- _starpu_initialize_workers_bindid(config);
- #ifdef STARPU_USE_CUDA
- int ncuda = config->conf->ncuda;
- if (ncuda != 0)
- {
- /* The user did not disable CUDA. We need to initialize CUDA
- * early to count the number of devices */
- _starpu_init_cuda();
- int nb_devices = _starpu_get_cuda_device_count();
- if (ncuda == -1)
- {
- /* Nothing was specified, so let's choose ! */
- ncuda = nb_devices;
- }
- else
- {
- if (ncuda > nb_devices)
- {
- /* The user requires more CUDA devices than
- * there is available */
- fprintf(stderr,
- "# Warning: %d CUDA devices "
- "requested. Only %d available.\n",
- ncuda, nb_devices);
- ncuda = nb_devices;
- }
- }
- }
- /* Now we know how many CUDA devices will be used */
- topology->ncudagpus = ncuda;
- STARPU_ASSERT(topology->ncudagpus <= STARPU_MAXCUDADEVS);
- _starpu_initialize_workers_cuda_gpuid(config);
- unsigned cudagpu;
- for (cudagpu = 0; cudagpu < topology->ncudagpus; cudagpu++)
- {
- int worker_idx = topology->nworkers + cudagpu;
- config->workers[worker_idx].arch = STARPU_CUDA_WORKER;
- int devid = _starpu_get_next_cuda_gpuid(config);
- enum starpu_perf_archtype arch =
- (enum starpu_perf_archtype)((int)STARPU_CUDA_DEFAULT + devid);
- config->workers[worker_idx].devid = devid;
- config->workers[worker_idx].perf_arch = arch;
- config->workers[worker_idx].worker_mask = STARPU_CUDA;
- _starpu_init_sched_ctx_for_worker(config->workers[topology->nworkers + cudagpu].workerid);
- config->worker_mask |= STARPU_CUDA;
- struct handle_entry *entry;
- entry = (struct handle_entry *) malloc(sizeof(*entry));
- STARPU_ASSERT(entry != NULL);
- entry->gpuid = devid;
- HASH_ADD_INT(devices_using_cuda, gpuid, entry);
- }
- topology->nworkers += topology->ncudagpus;
- #endif
- #ifdef STARPU_USE_OPENCL
- int nopencl = config->conf->nopencl;
- if (nopencl != 0)
- {
- /* The user did not disable OPENCL. We need to initialize
- * OpenCL early to count the number of devices */
- _starpu_opencl_init();
- int nb_devices;
- nb_devices = _starpu_opencl_get_device_count();
- if (nopencl == -1)
- {
- /* Nothing was specified, so let's choose ! */
- nopencl = nb_devices;
- if (nopencl > STARPU_MAXOPENCLDEVS)
- {
- fprintf(stderr,
- "# Warning: %d OpenCL devices "
- "available. Only %d enabled. "
- "Use configure option "
- "--enable-maxopencldadev=xxx to "
- "update the maximum value of "
- "supported OpenCL devices.\n",
- nb_devices, STARPU_MAXOPENCLDEVS);
- nopencl = STARPU_MAXOPENCLDEVS;
- }
- }
- else
- {
- /* Let's make sure this value is OK. */
- if (nopencl > nb_devices)
- {
- /* The user requires more OpenCL devices than
- * there is available */
- fprintf(stderr,
- "# Warning: %d OpenCL devices "
- "requested. Only %d available.\n",
- nopencl, nb_devices);
- nopencl = nb_devices;
- }
- /* Let's make sure this value is OK. */
- if (nopencl > STARPU_MAXOPENCLDEVS)
- {
- fprintf(stderr,
- "# Warning: %d OpenCL devices "
- "requested. Only %d enabled. Use "
- "configure option "
- "--enable-maxopencldev=xxx to update "
- "the maximum value of supported "
- "OpenCL devices.\n",
- nopencl, STARPU_MAXOPENCLDEVS);
- nopencl = STARPU_MAXOPENCLDEVS;
- }
- }
- }
- topology->nopenclgpus = nopencl;
- STARPU_ASSERT(topology->nopenclgpus + topology->nworkers <= STARPU_NMAXWORKERS);
- _starpu_initialize_workers_opencl_gpuid(config);
- unsigned openclgpu;
- for (openclgpu = 0; openclgpu < topology->nopenclgpus; openclgpu++)
- {
- int worker_idx = topology->nworkers + openclgpu;
- int devid = _starpu_get_next_opencl_gpuid(config);
- if (devid == -1)
- { // There is no more devices left
- topology->nopenclgpus = openclgpu;
- break;
- }
- config->workers[worker_idx].arch = STARPU_OPENCL_WORKER;
- enum starpu_perf_archtype arch =
- (enum starpu_perf_archtype)((int)STARPU_OPENCL_DEFAULT + devid);
- config->workers[worker_idx].devid = devid;
- config->workers[worker_idx].perf_arch = arch;
- config->workers[worker_idx].worker_mask = STARPU_OPENCL;
- _starpu_init_sched_ctx_for_worker(config->workers[topology->nworkers + openclgpu].workerid);
- config->worker_mask |= STARPU_OPENCL;
- }
- topology->nworkers += topology->nopenclgpus;
- #endif
- #ifdef STARPU_USE_GORDON
- int ngordon = config->conf->ngordon;
- if (ngordon != 0)
- {
- if (ngordon == -1)
- {
- /* Nothing was specified, so let's choose ! */
- ngordon = spe_cpu_info_get(SPE_COUNT_USABLE_SPES, -1);
- }
- else
- {
- STARPU_ASSERT(ngordon <= NMAXGORDONSPUS);
- if (ngordon > STARPU_MAXGORDONSPUS);
- {
- fprintf(stderr,
- "# Warning: %d Gordon CPUs devices "
- "requested. Only %d supported\n",
- ngordon, NMAXGORDONSPUS);
- ngordon = NMAXGORDONSPUS;
- }
- }
- }
- topology->ngordon_spus = ngordon;
- STARPU_ASSERT(topology->ngordon_spus + topology->nworkers <= STARPU_NMAXWORKERS);
- unsigned spu;
- for (spu = 0; spu < config->ngordon_spus; spu++)
- {
- int worker_idx = topology->nworkers + spu;
- config->workers[worker_idx].arch = STARPU_GORDON_WORKER;
- config->workers[worker_idx].perf_arch = STARPU_GORDON_DEFAULT;
- config->workers[worker_idx].id = spu;
- config->workers[worker_idx].worker_is_running = 0;
- config->workers[worker_idx].worker_mask = STARPU_GORDON;
- _starpu_init_sched_ctx_for_worker(config->workers[topology->nworkers + spu].workerid);
- config->worker_mask |= STARPU_GORDON;
- }
- topology->nworkers += topology->ngordon_spus;
- #endif
- /* we put the CPU section after the accelerator : in case there was an
- * accelerator found, we devote one cpu */
- #ifdef STARPU_USE_CPU
- int ncpu = config->conf->ncpus;
- if (ncpu != 0)
- {
- if (ncpu == -1)
- {
- unsigned already_busy_cpus =
- (topology->ngordon_spus ? 1 : 0) + topology->ncudagpus + topology->nopenclgpus;
- long avail_cpus = topology->nhwcpus - already_busy_cpus;
- if (avail_cpus < 0)
- avail_cpus = 0;
- ncpu = STARPU_MIN(avail_cpus, STARPU_MAXCPUS);
- }
- else
- {
- if (ncpu > STARPU_MAXCPUS)
- {
- fprintf(stderr,
- "# Warning: %d CPU devices requested."
- " Only %d enabled. Use configure "
- "option --enable-maxcpus=xxx to "
- "update the maximum value of "
- "supported CPU devices.\n",
- ncpu, STARPU_MAXCPUS);
- ncpu = STARPU_MAXCPUS;
- }
- }
- }
- topology->ncpus = ncpu;
- STARPU_ASSERT(topology->ncpus + topology->nworkers <= STARPU_NMAXWORKERS);
- unsigned cpu;
- for (cpu = 0; cpu < topology->ncpus; cpu++)
- {
- int worker_idx = topology->nworkers + cpu;
- config->workers[worker_idx].arch = STARPU_CPU_WORKER;
- config->workers[worker_idx].perf_arch = STARPU_CPU_DEFAULT;
- config->workers[worker_idx].devid = cpu;
- config->workers[worker_idx].worker_mask = STARPU_CPU;
- config->worker_mask |= STARPU_CPU;
- _starpu_init_sched_ctx_for_worker(config->workers[topology->nworkers + cpu].workerid);
- }
- topology->nworkers += topology->ncpus;
- #endif
- if (topology->nworkers == 0)
- {
- _STARPU_DEBUG("No worker found, aborting ...\n");
- return -ENODEV;
- }
- return 0;
- }
- void
- _starpu_bind_thread_on_cpu (
- struct _starpu_machine_config *config STARPU_ATTRIBUTE_UNUSED,
- unsigned cpuid)
- {
- if (starpu_get_env_number("STARPU_WORKERS_NOBIND") > 0)
- return;
- #ifdef STARPU_HAVE_HWLOC
- const struct hwloc_topology_support *support;
- #ifdef STARPU_USE_OPENCL
- _starpu_opencl_init();
- #endif
- #ifdef STARPU_USE_CUDA
- _starpu_init_cuda();
- #endif
- _starpu_init_topology(config);
- support = hwloc_topology_get_support (config->topology.hwtopology);
- if (support->cpubind->set_thisthread_cpubind)
- {
- hwloc_obj_t obj =
- hwloc_get_obj_by_depth (config->topology.hwtopology,
- config->cpu_depth, cpuid);
- hwloc_bitmap_t set = obj->cpuset;
- int ret;
- hwloc_bitmap_singlify(set);
- ret = hwloc_set_cpubind (config->topology.hwtopology, set,
- HWLOC_CPUBIND_THREAD);
- if (ret)
- {
- perror("binding thread");
- STARPU_ABORT();
- }
- }
- #elif defined(HAVE_PTHREAD_SETAFFINITY_NP) && defined(__linux__)
- int ret;
- /* fix the thread on the correct cpu */
- cpu_set_t aff_mask;
- CPU_ZERO(&aff_mask);
- CPU_SET(cpuid, &aff_mask);
- pthread_t self = pthread_self();
- ret = pthread_setaffinity_np(self, sizeof(aff_mask), &aff_mask);
- if (ret)
- {
- perror("binding thread");
- STARPU_ABORT();
- }
- #elif defined(__MINGW32__) || defined(__CYGWIN__)
- DWORD mask = 1 << cpuid;
- if (!SetThreadAffinityMask(GetCurrentThread(), mask))
- {
- fprintf(stderr,"SetThreadMaskAffinity(%lx) failed\n", mask);
- STARPU_ABORT();
- }
- #else
- #warning no CPU binding support
- #endif
- }
- void
- _starpu_bind_thread_on_cpus (
- struct _starpu_machine_config *config STARPU_ATTRIBUTE_UNUSED,
- struct _starpu_combined_worker *combined_worker)
- {
- #ifdef STARPU_HAVE_HWLOC
- const struct hwloc_topology_support *support;
- #ifdef STARPU_USE_OPENC
- _starpu_opencl_init();
- #endif
- #ifdef STARPU_USE_CUDA
- _starpu_init_cuda();
- #endif
- _starpu_init_topology(config);
- support = hwloc_topology_get_support(config->topology.hwtopology);
- if (support->cpubind->set_thisthread_cpubind)
- {
- hwloc_bitmap_t set = combined_worker->hwloc_cpu_set;
- int ret;
- ret = hwloc_set_cpubind (config->topology.hwtopology, set,
- HWLOC_CPUBIND_THREAD);
- if (ret)
- {
- perror("binding thread");
- STARPU_ABORT();
- }
- }
- #else
- #warning no parallel worker CPU binding support
- #endif
- }
- static void
- _starpu_init_workers_binding (struct _starpu_machine_config *config)
- {
- /* launch one thread per CPU */
- unsigned ram_memory_node;
- /* a single cpu is dedicated for the accelerators */
- int accelerator_bindid = -1;
- /* note that even if the CPU cpu are not used, we always have a RAM
- * node */
- /* TODO : support NUMA ;) */
- ram_memory_node = _starpu_register_memory_node(STARPU_CPU_RAM, -1);
- /* We will store all the busid of the different (src, dst)
- * combinations in a matrix which we initialize here. */
- _starpu_initialize_busid_matrix();
- unsigned worker;
- for (worker = 0; worker < config->topology.nworkers; worker++)
- {
- unsigned memory_node = -1;
- unsigned is_a_set_of_accelerators = 0;
- struct _starpu_worker *workerarg = &config->workers[worker];
- /* Perhaps the worker has some "favourite" bindings */
- int *preferred_binding = NULL;
- int npreferred = 0;
- /* select the memory node that contains worker's memory */
- switch (workerarg->arch)
- {
- case STARPU_CPU_WORKER:
- /* "dedicate" a cpu cpu to that worker */
- is_a_set_of_accelerators = 0;
- memory_node = ram_memory_node;
- _starpu_memory_node_worker_add(ram_memory_node);
- break;
- #ifdef STARPU_USE_GORDON
- case STARPU_GORDON_WORKER:
- is_a_set_of_accelerators = 1;
- memory_node = ram_memory_node;
- _starpu_memory_node_worker_add(ram_memory_node);
- break;
- #endif
- #ifdef STARPU_USE_CUDA
- case STARPU_CUDA_WORKER:
- if (may_bind_automatically)
- {
- /* StarPU is allowed to bind threads automatically */
- preferred_binding = _starpu_get_cuda_affinity_vector(workerarg->devid);
- npreferred = config->topology.nhwcpus;
- }
- is_a_set_of_accelerators = 0;
- memory_node = _starpu_register_memory_node(STARPU_CUDA_RAM, workerarg->devid);
- _starpu_memory_node_worker_add(memory_node);
- _starpu_register_bus(0, memory_node);
- _starpu_register_bus(memory_node, 0);
- #ifdef HAVE_CUDA_MEMCPY_PEER
- unsigned worker2;
- for (worker2 = 0; worker2 < worker; worker2++)
- {
- struct _starpu_worker *workerarg = &config->workers[worker];
- if (workerarg->arch == STARPU_CUDA_WORKER)
- {
- unsigned memory_node2 = starpu_worker_get_memory_node(worker2);
- _starpu_register_bus(memory_node2, memory_node);
- _starpu_register_bus(memory_node, memory_node2);
- }
- }
- #endif
- break;
- #endif
- #ifdef STARPU_USE_OPENCL
- case STARPU_OPENCL_WORKER:
- if (may_bind_automatically)
- {
- /* StarPU is allowed to bind threads automatically */
- preferred_binding = _starpu_get_opencl_affinity_vector(workerarg->devid);
- npreferred = config->topology.nhwcpus;
- }
- is_a_set_of_accelerators = 0;
- memory_node = _starpu_register_memory_node(STARPU_OPENCL_RAM, workerarg->devid);
- _starpu_memory_node_worker_add(memory_node);
- _starpu_register_bus(0, memory_node);
- _starpu_register_bus(memory_node, 0);
- break;
- #endif
- default:
- STARPU_ABORT();
- }
- if (is_a_set_of_accelerators)
- {
- if (accelerator_bindid == -1)
- accelerator_bindid = _starpu_get_next_bindid(config, preferred_binding, npreferred);
- workerarg->bindid = accelerator_bindid;
- }
- else
- {
- workerarg->bindid = _starpu_get_next_bindid(config, preferred_binding, npreferred);
- }
- workerarg->memory_node = memory_node;
- #ifdef __GLIBC__
- /* Save the initial cpuset */
- CPU_ZERO(&workerarg->initial_cpu_set);
- CPU_SET(workerarg->bindid, &workerarg->initial_cpu_set);
- CPU_ZERO(&workerarg->current_cpu_set);
- CPU_SET(workerarg->bindid, &workerarg->current_cpu_set);
- #endif /* __GLIBC__ */
- #ifdef STARPU_HAVE_HWLOC
- /* Put the worker descriptor in the userdata field of the
- * hwloc object describing the CPU */
- hwloc_obj_t worker_obj;
- worker_obj =
- hwloc_get_obj_by_depth (config->topology.hwtopology,
- config->cpu_depth,
- workerarg->bindid);
- worker_obj->userdata = &config->workers[worker];
- /* Clear the cpu set and set the cpu */
- workerarg->initial_hwloc_cpu_set =
- hwloc_bitmap_dup (worker_obj->cpuset);
- workerarg->current_hwloc_cpu_set =
- hwloc_bitmap_dup (worker_obj->cpuset);
- #endif
- }
- }
- int
- _starpu_build_topology (struct _starpu_machine_config *config)
- {
- int ret;
- ret = _starpu_init_machine_config(config);
- if (ret)
- return ret;
- /* for the data management library */
- _starpu_init_memory_nodes();
- _starpu_init_workers_binding(config);
- return 0;
- }
- void
- _starpu_destroy_topology (
- struct _starpu_machine_config *config __attribute__ ((unused)))
- {
- /* cleanup StarPU internal data structures */
- _starpu_deinit_memory_nodes();
- unsigned worker;
- for (worker = 0; worker < config->topology.nworkers; worker++)
- {
- #ifdef STARPU_HAVE_HWLOC
- struct _starpu_worker *workerarg = &config->workers[worker];
- hwloc_bitmap_free(workerarg->initial_hwloc_cpu_set);
- hwloc_bitmap_free(workerarg->current_hwloc_cpu_set);
- #endif
- }
- #ifdef STARPU_HAVE_HWLOC
- hwloc_topology_destroy(config->topology.hwtopology);
- #endif
- topology_is_initialized = 0;
- #ifdef STARPU_USE_CUDA
- struct handle_entry *entry, *tmp;
- HASH_ITER(hh, devices_using_cuda, entry, tmp)
- {
- HASH_DEL(devices_using_cuda, entry);
- free(entry);
- }
- devices_using_cuda = NULL;
- #endif
- #if defined(STARPU_USE_CUDA) || defined(STARPU_USE_OPENCL)
- may_bind_automatically = 0;
- #endif
- }
- void
- starpu_topology_print (FILE *output)
- {
- struct _starpu_machine_config *config = _starpu_get_machine_config();
- struct starpu_machine_topology *topology = &config->topology;
- unsigned core;
- unsigned worker;
- unsigned nworkers = starpu_worker_get_count();
- unsigned ncombinedworkers = topology->ncombinedworkers;
- for (core = 0; core < topology->nhwcpus; core++) {
- fprintf(output, "core %u\t", core);
- for (worker = 0;
- worker < nworkers + ncombinedworkers;
- worker++)
- {
- if (worker < nworkers)
- {
- if (topology->workers_bindid[worker] == core)
- {
- char name[256];
- starpu_worker_get_name (worker, name,
- sizeof(name));
- fprintf(output, "%s\t", name);
- }
- }
- else
- {
- int worker_size, i;
- int *combined_workerid;
- starpu_combined_worker_get_description(worker, &worker_size, &combined_workerid);
- for (i = 0; i < worker_size; i++)
- {
- if (topology->workers_bindid[combined_workerid[i]] == core)
- fprintf(output, "comb %u\t", worker-nworkers);
- }
- }
- }
- fprintf(output, "\n");
- }
- }
|