123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /* 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 <assert.h>
- #include <math.h>
- #include <stdio.h>
- #ifdef STARPU_USE_CUDA
- #include <cuda.h>
- #include <cuda_runtime_api.h>
- #include <cublas.h>
- #endif
- #include <starpu.h>
- #include <common/config.h>
- #include <core/jobs.h>
- #include <core/task.h>
- #include <datawizard/datawizard.h>
- #include <core/perfmodel/perfmodel.h>
- #include <common/fxt.h>
- 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__
|