2015-01-23 03:38:24 +03:00
|
|
|
#ifndef CUDA_H
|
|
|
|
#define CUDA_H
|
|
|
|
|
2015-01-31 09:05:23 +03:00
|
|
|
extern int gpu_index;
|
|
|
|
|
|
|
|
#ifdef GPU
|
|
|
|
|
2015-01-23 03:38:24 +03:00
|
|
|
#define BLOCK 256
|
|
|
|
|
|
|
|
#include "cuda_runtime.h"
|
2015-03-21 22:25:14 +03:00
|
|
|
#include "curand.h"
|
2015-01-23 03:38:24 +03:00
|
|
|
#include "cublas_v2.h"
|
|
|
|
|
|
|
|
void check_error(cudaError_t status);
|
|
|
|
cublasHandle_t blas_handle();
|
|
|
|
float *cuda_make_array(float *x, int n);
|
|
|
|
int *cuda_make_int_array(int n);
|
|
|
|
void cuda_push_array(float *x_gpu, float *x, int n);
|
|
|
|
void cuda_pull_array(float *x_gpu, float *x, int n);
|
|
|
|
void cuda_free(float *x_gpu);
|
2015-03-21 22:25:14 +03:00
|
|
|
void cuda_random(float *x_gpu, int n);
|
2015-01-23 03:38:24 +03:00
|
|
|
float cuda_compare(float *x_gpu, float *x, int n, char *s);
|
|
|
|
dim3 cuda_gridsize(size_t n);
|
|
|
|
|
|
|
|
#endif
|
2015-01-31 09:05:23 +03:00
|
|
|
#endif
|