/* StarPU --- Runtime system for heterogeneous multicore architectures. * * Copyright (C) 2009, 2010, 2012-2014 Université de Bordeaux 1 * Copyright (C) 2010, 2012 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 __DRIVER_CUDA_H__ #define __DRIVER_CUDA_H__ #include #include #include #ifdef STARPU_USE_CUDA #include #include #include #endif #include #include #include #include #include #include #include unsigned _starpu_get_cuda_device_count(void); #if defined(STARPU_USE_CUDA) || defined(STARPU_SIMGRID) void _starpu_cuda_discover_devices (struct _starpu_machine_config *); void _starpu_init_cuda(void); void *_starpu_cuda_worker(void *); #else # define _starpu_cuda_discover_devices(config) ((void) config) #endif #ifdef STARPU_USE_CUDA cudaStream_t starpu_cuda_get_in_transfer_stream(unsigned node); cudaStream_t starpu_cuda_get_out_transfer_stream(unsigned node); cudaStream_t starpu_cuda_get_peer_transfer_stream(unsigned src_node, unsigned dst_node); int _starpu_run_cuda(struct starpu_driver *); int _starpu_cuda_driver_init(struct starpu_driver *); int _starpu_cuda_driver_run_once(struct starpu_driver *); int _starpu_cuda_driver_deinit(struct starpu_driver *); #endif #endif // __DRIVER_CUDA_H__