12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2009-2010, 2012, 2014-2016 Université de Bordeaux
- * Copyright (C) 2010, 2015 CNRS
- *
- * 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 __TOPOLOGY_H__
- #define __TOPOLOGY_H__
- #include <starpu.h>
- #include <common/config.h>
- #include <common/list.h>
- #include <common/fxt.h>
- /* TODO actually move this struct into this header */
- struct _starpu_machine_config;
- #ifndef STARPU_SIMGRID
- #ifdef STARPU_HAVE_HWLOC
- /* This is allocated for each hwloc object */
- struct _starpu_hwloc_userdata {
- struct _starpu_worker_list *worker_list; /* List of workers running on this obj */
- unsigned ngpus; /* Number of GPUs sharing this PCI link */
- };
- #endif
- #endif
- /* Detect the number of memory nodes and where to bind the different workers. */
- int _starpu_build_topology(struct _starpu_machine_config *config, int no_mp_config);
- /* Should be called instead of _starpu_destroy_topology when _starpu_build_topology returns a non zero value. */
- void _starpu_destroy_machine_config(struct _starpu_machine_config *config);
- /* Destroy all resources used to store the topology of the machine. */
- void _starpu_destroy_topology(struct _starpu_machine_config *config);
- /* returns the number of physical cpus */
- unsigned _starpu_topology_get_nhwcpu(struct _starpu_machine_config *config);
- /* returns the number of logical cpus */
- unsigned _starpu_topology_get_nhwpu(struct _starpu_machine_config *config);
- #define STARPU_NOWORKERID -1
- /* Bind the current thread on the CPU logically identified by "cpuid". The
- * logical ordering of the processors is either that of hwloc (if available),
- * or the ordering exposed by the OS. */
- void _starpu_bind_thread_on_cpu(struct _starpu_machine_config *config, int cpuid, int workerid);
- struct _starpu_combined_worker;
- /* Bind the current thread on the set of CPUs for the given combined worker. */
- void _starpu_bind_thread_on_cpus(struct _starpu_machine_config *config STARPU_ATTRIBUTE_UNUSED, struct _starpu_combined_worker *combined_worker);
- void *_starpu_get_worker_from_driver(struct starpu_driver *d);
- #endif // __TOPOLOGY_H__
|