Flux.jl/test/runtests.jl

19 lines
296 B
Julia
Raw Normal View History

2018-07-18 07:01:06 +00:00
using Flux, Test, Random
2016-12-15 23:11:35 +00:00
2018-02-08 10:33:51 +00:00
srand(0)
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-07-12 19:48:40 +00:00
# if Base.find_in_path("CuArrays") ≠ nothing
# include("cuda/cuda.jl")
# end
2018-01-16 17:58:14 +00:00
2017-07-04 17:32:21 +00:00
end