Skip to content

Commit 1f23c0d

Browse files
committed
Use XUnit for parallel testing.
1 parent 7f68400 commit 1f23c0d

16 files changed

+165
-117
lines changed

Project.toml

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,14 @@
11
name = "GPUArrays"
22
uuid = "0c68f7d7-f131-5f86-a1c3-88cf8149b2d7"
3-
version = "6.2.0"
3+
version = "6.3.0"
44

55
[deps]
6-
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
76
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
87
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
98
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
109
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
1110
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
1211

1312
[compat]
14-
AbstractFFTs = "0.4, 0.5, 1.0"
1513
Adapt = "2.0, 3.0"
1614
julia = "1.5"
17-
18-
[extras]
19-
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
20-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
21-
22-
[targets]
23-
test = ["Test", "FillArrays"]

src/GPUArrays.jl

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ using Printf
88
using LinearAlgebra.BLAS
99
using Base.Cartesian
1010

11-
using AbstractFFTs
12-
1311
using Adapt
1412

1513
# device functionality

test/Project.toml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[deps]
2+
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
3+
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
4+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
5+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
6+
XUnit = "3e3c03f2-1a94-11e9-2981-050a4ca824ab"

test/runtests.jl

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
using GPUArrays, Test
1+
using GPUArrays, XUnit
2+
3+
@testset "GPUArrays" runner=ParallelTestRunner() begin
24

35
include("testsuite.jl")
46

@@ -15,3 +17,5 @@ end
1517
@testset "Array" begin
1618
TestSuite.test(Array)
1719
end
20+
21+
end

test/testsuite.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ export supported_eltypes
88

99
using GPUArrays
1010

11+
using XUnit
12+
1113
using LinearAlgebra
1214
using Random
13-
using Test
1415

1516
using Adapt
1617
using FillArrays

test/testsuite/base.jl

+12-12
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function ntuple_closure(ctx, result, ::Val{N}, testval) where N
2626
end
2727

2828
@testsuite "base" AT->begin
29-
@testset "copyto!" begin
29+
@testcase "copyto!" begin
3030
x = fill(0f0, (10, 10))
3131
y = rand(Float32, (20, 10))
3232
a = AT(x)
@@ -115,7 +115,7 @@ end
115115
end
116116
end
117117

118-
@testset "vcat + hcat" begin
118+
@testcase "vcat + hcat" begin
119119
@test compare(vcat, AT, fill(0f0, (10, 10)), rand(Float32, 20, 10))
120120
@test compare(hcat, AT, fill(0f0, (10, 10)), rand(Float32, 10, 10))
121121

@@ -124,15 +124,15 @@ end
124124
@test compare((a,b) -> cat(a, b; dims=4), AT, rand(Float32, 3, 4), rand(Float32, 3, 4))
125125
end
126126

127-
@testset "reshape" begin
127+
@testcase "reshape" begin
128128
@test compare(reshape, AT, rand(10), Ref((10,)))
129129
@test compare(reshape, AT, rand(10), Ref((10,1)))
130130
@test compare(reshape, AT, rand(10), Ref((1,10)))
131131

132132
@test_throws Exception reshape(AT(rand(10)), (10,2))
133133
end
134134

135-
@testset "reinterpret" begin
135+
@testcase "reinterpret" begin
136136
a = rand(ComplexF32, 22)
137137
A = AT(a)
138138
af0 = reinterpret(Float32, a)
@@ -148,7 +148,7 @@ end
148148
@test Array(Af0) == af0
149149
end
150150

151-
AT <: AbstractGPUArray && @testset "ntuple test" begin
151+
AT <: AbstractGPUArray && @testcase "ntuple test" begin
152152
result = AT(Vector{NTuple{3, Float32}}(undef, 1))
153153
gpu_call(ntuple_test, result, Val(3))
154154
@test Array(result)[1] == (77, 2*77, 3*77)
@@ -157,29 +157,29 @@ end
157157
@test Array(result)[1] == (x, 2*x, 3*x)
158158
end
159159

160-
AT <: AbstractGPUArray && @testset "cartesian iteration" begin
160+
AT <: AbstractGPUArray && @testcase "cartesian iteration" begin
161161
Ac = rand(Float32, 32, 32)
162162
A = AT(Ac)
163163
result = fill!(copy(A), 0.0)
164164
gpu_call(cartesian_iter, result, A, size(A))
165165
Array(result) == Ac
166166
end
167167

168-
AT <: AbstractGPUArray && @testset "Custom kernel from Julia function" begin
168+
AT <: AbstractGPUArray && @testcase "Custom kernel from Julia function" begin
169169
x = AT(rand(Float32, 100))
170170
y = AT(rand(Float32, 100))
171171
gpu_call(clmap!, -, x, y; target=x)
172172
jy = Array(y)
173173
@test map!(-, jy, jy) Array(x)
174174
end
175175

176-
@testset "map" begin
176+
@testcase "map" begin
177177
@test compare((a, b)-> map(+, a, b), AT, rand(Float32, 10), rand(Float32, 10))
178178
@test compare((a, b)-> map!(-, a, b), AT, rand(Float32, 10), rand(Float32, 10))
179179
@test compare((a, b, c, d)-> map!(*, a, b, c, d), AT, rand(Float32, 10), rand(Float32, 10), rand(Float32, 10), rand(Float32, 10))
180180
end
181181

182-
@testset "repeat" begin
182+
@testcase "repeat" begin
183183
@test compare(a-> repeat(a, 5, 6), AT, rand(Float32, 10))
184184
@test compare(a-> repeat(a, 5), AT, rand(Float32, 10))
185185
@test compare(a-> repeat(a, 5), AT, rand(Float32, 5, 4))
@@ -189,18 +189,18 @@ end
189189
@test compare(a-> repeat(a, 4, 0), AT, rand(Float32, 10, 15))
190190
end
191191

192-
@testset "permutedims" begin
192+
@testcase "permutedims" begin
193193
@test compare(x->permutedims(x, [1, 2]), AT, rand(4, 4))
194194

195195
inds = rand(1:100, 150, 150)
196196
@test compare(x->permutedims(view(x, inds, :), (3, 2, 1)), AT, rand(100, 100))
197197
end
198198

199-
@testset "circshift" begin
199+
@testcase "circshift" begin
200200
@test compare(x->circshift(x, (0,1)), AT, reshape(Vector(1:16), (4,4)))
201201
end
202202

203-
@testset "copy" begin
203+
@testcase "copy" begin
204204
a = AT([1])
205205
b = copy(a)
206206
fill!(b, 0)

test/testsuite/broadcasting.jl

+11-11
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
broadcasting(AT)
33
vec3(AT)
44

5-
@testset "type instabilities" begin
5+
@testcase "type instabilities" begin
66
f(x) = x ? 1.0 : 0
77
try
88
f.(AT(rand(Bool, 1)))
@@ -40,8 +40,8 @@ end
4040
function broadcasting(AT)
4141
for ET in supported_eltypes()
4242
N = 10
43-
@testset "broadcast $ET" begin
44-
@testset "RefValue" begin
43+
@testcase "broadcast $ET" begin
44+
@testcase "RefValue" begin
4545
cidx = rand(1:Int(N), 2*N)
4646
gidx = AT(cidx)
4747
cy = rand(ET, 2*N)
@@ -53,15 +53,15 @@ function broadcasting(AT)
5353
@test Array(gres) == cres
5454
end
5555

56-
@testset "Tuple" begin
56+
@testcase "Tuple" begin
5757
@test compare(AT, rand(ET, 3, N), rand(ET, 3, N), rand(ET, N), rand(ET, N), rand(ET, N)) do out, arr, a, b, c
5858
broadcast!(out, arr, (a, b, c)) do xx, yy
5959
xx + first(yy)
6060
end
6161
end
6262
end
6363

64-
@testset "Adjoint and Transpose" begin
64+
@testcase "Adjoint and Transpose" begin
6565
A = AT(rand(ET, N))
6666
A' .= ET(2)
6767
@test all(isequal(ET(2)'), Array(A))
@@ -126,7 +126,7 @@ function broadcasting(AT)
126126
@test compare((A, B) -> A .* B .+ ET(10), AT, rand(ET, 40, 40), rand(ET, 40, 40))
127127
end
128128

129-
@testset "map! $ET" begin
129+
@testcase "map! $ET" begin
130130
@test compare(AT, rand(2,2), rand(2,2)) do x,y
131131
map!(+, x, y)
132132
end
@@ -138,7 +138,7 @@ function broadcasting(AT)
138138
end
139139
end
140140

141-
@testset "map $ET" begin
141+
@testcase "map $ET" begin
142142
@test compare(AT, rand(2,2), rand(2,2)) do x,y
143143
map(+, x, y)
144144
end
@@ -151,15 +151,15 @@ function broadcasting(AT)
151151
end
152152
end
153153

154-
@testset "0D" begin
154+
@testcase "0D" begin
155155
x = AT{Float64}(undef)
156156
x .= 1
157157
@test collect(x)[] == 1
158158
x /= 2
159159
@test collect(x)[] == 0.5
160160
end
161161

162-
@testset "Ref" begin
162+
@testcase "Ref" begin
163163
# as first arg, 0d broadcast
164164
@test compare(x->getindex.(Ref(x),1), AT, [0])
165165

@@ -174,13 +174,13 @@ function broadcasting(AT)
174174
@test Array(a) == Array(b)
175175
end
176176

177-
@testset "stackoverflow in copy(::Broadcast)" begin
177+
@testcase "stackoverflow in copy(::Broadcast)" begin
178178
copy(Base.broadcasted(identity, AT(Int[])))
179179
end
180180
end
181181

182182
function vec3(AT)
183-
@testset "vec 3" begin
183+
@testcase "vec 3" begin
184184
N = 20
185185

186186
xc = map(x-> ntuple(i-> rand(Float32), Val(3)), 1:N)

test/testsuite/construction.jl

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@testsuite "constructors" AT->begin
2-
@testset "constructors + similar" begin
2+
@testcase "constructors + similar" begin
33
for T in supported_eltypes()
44
B = AT{T}(undef, 10)
55
@test B isa AT{T,1}
@@ -65,7 +65,7 @@
6565
end
6666
end
6767

68-
@testset "comparison against Array" begin
68+
@testcase "comparison against Array" begin
6969
for typs in [(), (Int,), (Int,1), (Int,2), (Float32,), (Float32,1), (Float32,2)],
7070
args in [(), (1,), (1,2), ((1,),), ((1,2),),
7171
(undef,), (undef, 1,), (undef, 1,2), (undef, (1,),), (undef, (1,2),),
@@ -97,6 +97,7 @@ end
9797

9898
@testsuite "conversions" AT->begin
9999
for T in supported_eltypes()
100+
@testcase "$T" begin
100101
Bc = round.(rand(10, 10) .* 10.0)
101102
B = AT{T}(Bc)
102103
@test size(B) == (10, 10)
@@ -121,10 +122,12 @@ end
121122
@test eltype(B) == T
122123
@test Array(B) Bc
123124
end
125+
end
124126
end
125127

126128
@testsuite "value constructors" AT->begin
127129
for T in supported_eltypes()
130+
@testcase "$T" begin
128131
@test compare((a,b)->fill!(a, b), AT, rand(T, 3), rand(T))
129132

130133
x = Matrix{T}(I, 4, 2)
@@ -142,10 +145,12 @@ end
142145
@test eltype(x1) == T
143146
@test Array(x1) x
144147
end
148+
end
145149
end
146150

147151
@testsuite "iterator constructors" AT->begin
148152
for T in supported_eltypes()
153+
@testcase "$T" begin
149154
@test Array(AT(Fill(T(0), (10,)))) == Array(fill!(similar(AT{T}, (10,)), T(0)))
150155
@test Array(AT(Fill(T(0), (10, 10)))) == Array(fill!(similar(AT{T}, (10, 10)), T(0)))
151156
if T <: Real
@@ -156,4 +161,5 @@ end
156161
@test eltype(x) == Float32
157162
end
158163
end
164+
end
159165
end

0 commit comments

Comments
 (0)