@@ -26,7 +26,7 @@ function ntuple_closure(ctx, result, ::Val{N}, testval) where N
26
26
end
27
27
28
28
@testsuite " base" AT-> begin
29
- @testset " copyto!" begin
29
+ @testcase " copyto!" begin
30
30
x = fill (0f0 , (10 , 10 ))
31
31
y = rand (Float32, (20 , 10 ))
32
32
a = AT (x)
115
115
end
116
116
end
117
117
118
- @testset " vcat + hcat" begin
118
+ @testcase " vcat + hcat" begin
119
119
@test compare (vcat, AT, fill (0f0 , (10 , 10 )), rand (Float32, 20 , 10 ))
120
120
@test compare (hcat, AT, fill (0f0 , (10 , 10 )), rand (Float32, 10 , 10 ))
121
121
@@ -124,15 +124,15 @@ end
124
124
@test compare ((a,b) -> cat (a, b; dims= 4 ), AT, rand (Float32, 3 , 4 ), rand (Float32, 3 , 4 ))
125
125
end
126
126
127
- @testset " reshape" begin
127
+ @testcase " reshape" begin
128
128
@test compare (reshape, AT, rand (10 ), Ref ((10 ,)))
129
129
@test compare (reshape, AT, rand (10 ), Ref ((10 ,1 )))
130
130
@test compare (reshape, AT, rand (10 ), Ref ((1 ,10 )))
131
131
132
132
@test_throws Exception reshape (AT (rand (10 )), (10 ,2 ))
133
133
end
134
134
135
- @testset " reinterpret" begin
135
+ @testcase " reinterpret" begin
136
136
a = rand (ComplexF32, 22 )
137
137
A = AT (a)
138
138
af0 = reinterpret (Float32, a)
148
148
@test Array (Af0) == af0
149
149
end
150
150
151
- AT <: AbstractGPUArray && @testset " ntuple test" begin
151
+ AT <: AbstractGPUArray && @testcase " ntuple test" begin
152
152
result = AT (Vector {NTuple{3, Float32}} (undef, 1 ))
153
153
gpu_call (ntuple_test, result, Val (3 ))
154
154
@test Array (result)[1 ] == (77 , 2 * 77 , 3 * 77 )
@@ -157,29 +157,29 @@ end
157
157
@test Array (result)[1 ] == (x, 2 * x, 3 * x)
158
158
end
159
159
160
- AT <: AbstractGPUArray && @testset " cartesian iteration" begin
160
+ AT <: AbstractGPUArray && @testcase " cartesian iteration" begin
161
161
Ac = rand (Float32, 32 , 32 )
162
162
A = AT (Ac)
163
163
result = fill! (copy (A), 0.0 )
164
164
gpu_call (cartesian_iter, result, A, size (A))
165
165
Array (result) == Ac
166
166
end
167
167
168
- AT <: AbstractGPUArray && @testset " Custom kernel from Julia function" begin
168
+ AT <: AbstractGPUArray && @testcase " Custom kernel from Julia function" begin
169
169
x = AT (rand (Float32, 100 ))
170
170
y = AT (rand (Float32, 100 ))
171
171
gpu_call (clmap!, - , x, y; target= x)
172
172
jy = Array (y)
173
173
@test map! (- , jy, jy) ≈ Array (x)
174
174
end
175
175
176
- @testset " map" begin
176
+ @testcase " map" begin
177
177
@test compare ((a, b)-> map (+ , a, b), AT, rand (Float32, 10 ), rand (Float32, 10 ))
178
178
@test compare ((a, b)-> map! (- , a, b), AT, rand (Float32, 10 ), rand (Float32, 10 ))
179
179
@test compare ((a, b, c, d)-> map! (* , a, b, c, d), AT, rand (Float32, 10 ), rand (Float32, 10 ), rand (Float32, 10 ), rand (Float32, 10 ))
180
180
end
181
181
182
- @testset " repeat" begin
182
+ @testcase " repeat" begin
183
183
@test compare (a-> repeat (a, 5 , 6 ), AT, rand (Float32, 10 ))
184
184
@test compare (a-> repeat (a, 5 ), AT, rand (Float32, 10 ))
185
185
@test compare (a-> repeat (a, 5 ), AT, rand (Float32, 5 , 4 ))
@@ -189,18 +189,18 @@ end
189
189
@test compare (a-> repeat (a, 4 , 0 ), AT, rand (Float32, 10 , 15 ))
190
190
end
191
191
192
- @testset " permutedims" begin
192
+ @testcase " permutedims" begin
193
193
@test compare (x-> permutedims (x, [1 , 2 ]), AT, rand (4 , 4 ))
194
194
195
195
inds = rand (1 : 100 , 150 , 150 )
196
196
@test compare (x-> permutedims (view (x, inds, :), (3 , 2 , 1 )), AT, rand (100 , 100 ))
197
197
end
198
198
199
- @testset " circshift" begin
199
+ @testcase " circshift" begin
200
200
@test compare (x-> circshift (x, (0 ,1 )), AT, reshape (Vector (1 : 16 ), (4 ,4 )))
201
201
end
202
202
203
- @testset " copy" begin
203
+ @testcase " copy" begin
204
204
a = AT ([1 ])
205
205
b = copy (a)
206
206
fill! (b, 0 )
0 commit comments