Skip to content
This repository was archived by the owner on Mar 12, 2021. It is now read-only.

Commit 4aef380

Browse files
committed
Debug.
1 parent 454afc3 commit 4aef380

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

test/base.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ end
5353

5454
# unsafe_wrap
5555
@test Base.unsafe_wrap(CuArray, CU_NULL, 1; own=false).pooled == false
56-
@test Base.unsafe_wrap(CuArray, CU_NULL, 2) == CuArray{Nothing,1}(CU_NULL, (2,), false)
56+
@device_code_warntype @test Base.unsafe_wrap(CuArray, CU_NULL, 2) == CuArray{Nothing,1}(CU_NULL, (2,), false)
5757
@test Base.unsafe_wrap(CuArray{Nothing}, CU_NULL, 2) == CuArray{Nothing,1}(CU_NULL, (2,), false)
5858
@test Base.unsafe_wrap(CuArray{Nothing,1}, CU_NULL, 2) == CuArray{Nothing,1}(CU_NULL, (2,), false)
5959
@test Base.unsafe_wrap(CuArray, CU_NULL, (1,2)) == CuArray{Nothing,2}(CU_NULL, (1,2), false)

test/runtests.jl

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -39,21 +39,21 @@ CuArrays.allowscalar(false)
3939

4040
CuArrays.enable_timings()
4141

42-
@testset "GPUArrays test suite" begin
43-
TestSuite.test(CuArray)
44-
end
42+
# @testset "GPUArrays test suite" begin
43+
# TestSuite.test(CuArray)
44+
# end
4545

4646
include("base.jl")
47-
include("memory.jl")
48-
include("blas.jl")
49-
include("rand.jl")
50-
include("fft.jl")
51-
include("sparse.jl")
52-
include("solver.jl")
53-
include("sparse_solver.jl")
54-
include("dnn.jl")
55-
include("tensor.jl")
56-
include("forwarddiff.jl")
47+
# include("memory.jl")
48+
# include("blas.jl")
49+
# include("rand.jl")
50+
# include("fft.jl")
51+
# include("sparse.jl")
52+
# include("solver.jl")
53+
# include("sparse_solver.jl")
54+
# include("dnn.jl")
55+
# include("tensor.jl")
56+
# include("forwarddiff.jl")
5757

5858
if haskey(ENV, "CI")
5959
CuArrays.memory_status()

0 commit comments

Comments
 (0)