Flux.jl/test/runtests.jl
2018-08-11 18:23:47 +05:30

20 lines
310 B
Julia

using Flux, Test, Random
using Random
Random.seed!(0)
@testset "Flux" begin
include("utils.jl")
include("tracker.jl")
include("layers/normalisation.jl")
include("layers/stateless.jl")
include("optimise.jl")
include("data.jl")
if Base.find_in_path("CuArrays") nothing
include("cuda/cuda.jl")
end
end