| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | /* StarPU --- Runtime system for heterogeneous multicore architectures. * * Copyright (C) 2010-2013,2015,2017                      CNRS * Copyright (C) 2009-2014                                Université de Bordeaux * * 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_DRIVER_H__#define __STARPU_DRIVER_H__#include <starpu_config.h>#if defined(STARPU_USE_OPENCL) && !defined(__CUDACC__)#include <starpu_opencl.h>#endif#ifdef __cplusplusextern "C"{#endifstruct starpu_driver{	enum starpu_worker_archtype type;	union	{		unsigned cpu_id;		unsigned cuda_id;#if defined(STARPU_USE_OPENCL) && !defined(__CUDACC__)		cl_device_id opencl_id;#elif defined(STARPU_SIMGRID)		unsigned opencl_id;#endif	} id;};int starpu_driver_run(struct starpu_driver *d);void starpu_drivers_request_termination(void);int starpu_driver_init(struct starpu_driver *d);int starpu_driver_run_once(struct starpu_driver *d);int starpu_driver_deinit(struct starpu_driver *d);#ifdef __cplusplus}#endif#endif /* __STARPU_DRIVER_H__ */
 |