123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2018 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.
- */
- /*! \defgroup API_Interop_Support Interoperability Support
- \brief This section describes the interface supplied by StarPU to interoperate with other runtime systems.
- \enum e_starpurm_drs_ret
- \ingroup API_Interop_Support
- StarPU Resource Manager return type.
- @name Initialisation
- \ingroup API_Interop_Support
- \fn void starpurm_initialize(void)
- \ingroup API_Interop_Support
- TODO.
- \fn void starpurm_shutdown(void)
- \ingroup API_Interop_Support
- TODO.
- @name Spawn
- \ingroup API_Interop_Support
- \fn void starpurm_spawn_kernel_on_cpus(void *data, void(*f)(void *), void *args, hwloc_cpuset_t cpuset)
- \ingroup API_Interop_Support
- TODO.
- \fn void starpurm_spawn_kernel_on_cpus_callback(void *data, void(*f)(void *), void *args, hwloc_cpuset_t cpuset, void(*cb_f)(void *), void *cb_args)
- \ingroup API_Interop_Support
- TODO.
- @name DynamicResourceSharing
- \ingroup API_Interop_Support
- \fn starpurm_drs_ret_t starpurm_set_drs_enable(starpurm_drs_desc_t *spd)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_set_drs_disable(starpurm_drs_desc_t *spd)
- \ingroup API_Interop_Support
- TODO.
- \fn int starpurm_drs_enabled_p(void)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_set_max_parallelism(starpurm_drs_desc_t *spd, int max)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_callback_set(starpurm_drs_desc_t *spd, starpurm_drs_cbs_t which, starpurm_drs_cb_t callback)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_callback_get(starpurm_drs_desc_t *spd, starpurm_drs_cbs_t which, starpurm_drs_cb_t *callback)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_assign_cpu_to_starpu(starpurm_drs_desc_t *spd, int cpuid)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_assign_cpus_to_starpu(starpurm_drs_desc_t *spd, int ncpus)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_assign_cpu_mask_to_starpu(starpurm_drs_desc_t *spd, const hwloc_cpuset_t mask)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_assign_all_cpus_to_starpu(starpurm_drs_desc_t *spd)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_withdraw_cpu_from_starpu(starpurm_drs_desc_t *spd, int cpuid)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_withdraw_cpus_from_starpu(starpurm_drs_desc_t *spd, int ncpus)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_withdraw_cpu_mask_from_starpu(starpurm_drs_desc_t *spd, const hwloc_cpuset_t mask)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_withdraw_all_cpus_from_starpu(starpurm_drs_desc_t *spd)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_lend(starpurm_drs_desc_t *spd)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_lend_cpu(starpurm_drs_desc_t *spd, int cpuid)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_lend_cpus(starpurm_drs_desc_t *spd, int ncpus)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_lend_cpu_mask(starpurm_drs_desc_t *spd, const hwloc_cpuset_t mask)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_reclaim(starpurm_drs_desc_t *spd)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_reclaim_cpu(starpurm_drs_desc_t *spd, int cpuid)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_reclaim_cpus(starpurm_drs_desc_t *spd, int ncpus)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_reclaim_cpu_mask(starpurm_drs_desc_t *spd, const hwloc_cpuset_t mask)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_acquire(starpurm_drs_desc_t *spd)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_acquire_cpu(starpurm_drs_desc_t *spd, int cpuid)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_acquire_cpus(starpurm_drs_desc_t *spd, int ncpus)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_acquire_cpu_mask(starpurm_drs_desc_t *spd, const hwloc_cpuset_t mask)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_return_all(starpurm_drs_desc_t *spd)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_return_cpu(starpurm_drs_desc_t *spd, int cpuid)
- \ingroup API_Interop_Support
- TODO.
- @name Devices
- \ingroup API_Interop_Support
- \fn int starpurm_get_device_type_id(const char *type_str)
- \ingroup API_Interop_Support
- TODO.
- \fn const char *starpurm_get_device_type_name(int type_id)
- \ingroup API_Interop_Support
- TODO.
- \fn int starpurm_get_nb_devices_by_type(int type_id)
- \ingroup API_Interop_Support
- TODO.
- \fn int starpurm_get_device_id(int type_id, int device_rank)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_assign_device_to_starpu(starpurm_drs_desc_t *spd, int type_id, int unit_rank)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_assign_devices_to_starpu(starpurm_drs_desc_t *spd, int type_id, int ndevices)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_assign_device_mask_to_starpu(starpurm_drs_desc_t *spd, const hwloc_cpuset_t mask)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_assign_all_devices_to_starpu(starpurm_drs_desc_t *spd, int type_id)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_withdraw_device_from_starpu(starpurm_drs_desc_t *spd, int type_id, int unit_rank)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_withdraw_devices_from_starpu(starpurm_drs_desc_t *spd, int type_id, int ndevices)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_withdraw_device_mask_from_starpu(starpurm_drs_desc_t *spd, const hwloc_cpuset_t mask)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_withdraw_all_devices_from_starpu(starpurm_drs_desc_t *spd, int type_id)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_lend_device(starpurm_drs_desc_t *spd, int type_id, int unit_rank)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_lend_devices(starpurm_drs_desc_t *spd, int type_id, int ndevices)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_lend_device_mask(starpurm_drs_desc_t *spd, const hwloc_cpuset_t mask)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_lend_all_devices(starpurm_drs_desc_t *spd, int type_id)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_reclaim_device(starpurm_drs_desc_t *spd, int type_id, int unit_rank)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_reclaim_devices(starpurm_drs_desc_t *spd, int type_id, int ndevices)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_reclaim_device_mask(starpurm_drs_desc_t *spd, const hwloc_cpuset_t mask)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_reclaim_all_devices(starpurm_drs_desc_t *spd, int type_id)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_acquire_device(starpurm_drs_desc_t *spd, int type_id, int unit_rank)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_acquire_devices(starpurm_drs_desc_t *spd, int type_id, int ndevices)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_acquire_device_mask(starpurm_drs_desc_t *spd, const hwloc_cpuset_t mask)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_acquire_all_devices(starpurm_drs_desc_t *spd, int type_id)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_return_all_devices(starpurm_drs_desc_t *spd, int type_id)
- \ingroup API_Interop_Support
- TODO.
- \fn starpurm_drs_ret_t starpurm_return_device(starpurm_drs_desc_t *spd, int type_id, int unit_rank)
- \ingroup API_Interop_Support
- TODO.
- @name CpusetsQueries
- \ingroup API_Interop_Support
- \fn hwloc_cpuset_t starpurm_get_device_worker_cpuset(int type_id, int unit_rank)
- \ingroup API_Interop_Support
- TODO.
- \fn hwloc_cpuset_t starpurm_get_global_cpuset(void)
- \ingroup API_Interop_Support
- TODO.
- \fn hwloc_cpuset_t starpurm_get_selected_cpuset(void)
- \ingroup API_Interop_Support
- TODO.
- \fn hwloc_cpuset_t starpurm_get_all_cpu_workers_cpuset(void)
- \ingroup API_Interop_Support
- TODO.
- \fn hwloc_cpuset_t starpurm_get_all_device_workers_cpuset(void)
- \ingroup API_Interop_Support
- TODO.
- \fn hwloc_cpuset_t starpurm_get_all_device_workers_cpuset_by_type(int typeid)
- \ingroup API_Interop_Support
- TODO.
- */
|