cling/include/cling/cuda.modulemap
Vassil Vassilev 14428ee875 Move curand_discrete and remove curand_poisson.
This should fix the cuda failures.
2019-10-29 20:29:06 +01:00

13 lines
309 B
Plaintext

module "cuda" [system] {
export *
module "cuda.h" { textual header "cuda.h" export * }
module "cuda_runtime.h" { header "cuda_runtime.h" export * }
module "curand.h" {
export *
header "curand.h"
header "curand_kernel.h"
header "curand_discrete.h"
header "curand_discrete2.h"
}
}