Flux.jl/src/cuda/cuda.jl

11 lines
120 B
Julia
Raw Normal View History

2018-01-24 18:45:24 +00:00
module CUDA
2018-08-20 12:08:04 +00:00
using ..CuArrays
2018-01-24 18:45:24 +00:00
2018-10-23 16:23:29 +00:00
if CuArrays.libcudnn != nothing
2018-06-20 13:16:42 +00:00
include("curnn.jl")
2018-06-28 08:51:17 +00:00
include("cudnn.jl")
2018-06-20 13:16:42 +00:00
end
2018-01-24 18:45:24 +00:00
end