Flux.jl/test/runtests.jl

17 lines
277 B
Julia
Raw Normal View History

2017-08-19 19:20:20 +00:00
using Flux, Base.Test
2016-12-15 23:11:35 +00:00
2017-07-04 17:32:21 +00:00
@testset "Flux" begin
2017-08-19 19:20:20 +00:00
include("utils.jl")
2017-08-23 00:43:45 +00:00
include("tracker.jl")
2017-10-26 10:46:12 +00:00
include("layers/normalisation.jl")
include("layers/stateless.jl")
2017-10-12 08:31:38 +00:00
include("optimise.jl")
2018-01-10 12:48:30 +00:00
include("data.jl")
2017-06-26 09:21:17 +00:00
2018-01-16 17:58:14 +00:00
if Base.find_in_path("CuArrays") nothing
2018-01-30 13:12:33 +00:00
include("cuda/cuda.jl")
2018-01-16 17:58:14 +00:00
end
2017-07-04 17:32:21 +00:00
end