123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2009-2013 Université de Bordeaux 1
- * Copyright (C) 2010-2013 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 __STARPU_WORKER_H__
- #define __STARPU_WORKER_H__
- #include <stdlib.h>
- #include <starpu_config.h>
- #ifdef STARPU_HAVE_HWLOC
- #include <hwloc.h>
- #endif
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- enum starpu_worker_archtype
- {
- STARPU_ANY_WORKER,
- STARPU_CPU_WORKER,
- STARPU_CUDA_WORKER,
- STARPU_OPENCL_WORKER,
- STARPU_MIC_WORKER,
- STARPU_SCC_WORKER
- };
- struct starpu_sched_ctx_iterator
- {
- int cursor;
- };
- enum starpu_worker_collection_type
- {
- STARPU_WORKER_LIST
- };
- struct starpu_worker_collection
- {
- void *workerids;
- unsigned nworkers;
- enum starpu_worker_collection_type type;
- unsigned (*has_next)(struct starpu_worker_collection *workers, struct starpu_sched_ctx_iterator *it);
- int (*get_next)(struct starpu_worker_collection *workers, struct starpu_sched_ctx_iterator *it);
- int (*add)(struct starpu_worker_collection *workers, int worker);
- int (*remove)(struct starpu_worker_collection *workers, int worker);
- void (*init)(struct starpu_worker_collection *workers);
- void (*deinit)(struct starpu_worker_collection *workers);
- void (*init_iterator)(struct starpu_worker_collection *workers, struct starpu_sched_ctx_iterator *it);
- };
- unsigned starpu_worker_get_count(void);
- unsigned starpu_combined_worker_get_count(void);
- unsigned starpu_worker_is_combined_worker(int id);
- unsigned starpu_cpu_worker_get_count(void);
- unsigned starpu_cuda_worker_get_count(void);
- unsigned starpu_opencl_worker_get_count(void);
- unsigned starpu_mic_worker_get_count(void);
- unsigned starpu_scc_worker_get_count(void);
- unsigned starpu_mic_device_get_count(void);
- int starpu_worker_get_id(void);
- int starpu_combined_worker_get_id(void);
- int starpu_combined_worker_get_size(void);
- int starpu_combined_worker_get_rank(void);
- enum starpu_worker_archtype starpu_worker_get_type(int id);
- int starpu_worker_get_count_by_type(enum starpu_worker_archtype type);
- int starpu_worker_get_ids_by_type(enum starpu_worker_archtype type, int *workerids, int maxsize);
- int starpu_worker_get_by_type(enum starpu_worker_archtype type, int num);
- int starpu_worker_get_by_devid(enum starpu_worker_archtype type, int devid);
- void starpu_worker_get_name(int id, char *dst, size_t maxlen);
- int starpu_worker_get_devid(int id);
- int starpu_worker_get_mp_nodeid(int id);
- #ifdef __cplusplus
- }
- #endif
- #endif /* __STARPU_WORKER_H__ */
|