Added vcat(...) test

This commit is contained in:
GenaBitu 2018-01-16 11:08:45 +01:00
parent bc8a32bc56
commit 096e20c5af
No known key found for this signature in database
GPG Key ID: 6E647E317A9DD426
1 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,9 @@ gradtest(f, dims...) = gradtest(f, rand.(dims)...)
@test gradtest(x -> x', rand(5))
@test gradtest(vcat, rand(5), rand(3))
@test gradtest(vcat, rand(5), rand(3), rand(8))
@test gradtest(vcat, rand(5), rand(3), rand(8), rand(2))
@test gradtest(vcat, rand(5), rand(3), rand(8), rand(2), rand(4))
@test gradtest(vcat, rand(2,3), rand(3,3))
@testset "mean" begin