Skip to content

Commit 5d9228e

Browse files
authored
Skip broken CUDA KernelAbstractions test
The CUDA KernelAbstractions test seems to be broken like the ROCm KernelAbstractions test, so skip both of them rather than only the latter.
1 parent 5c310e0 commit 5d9228e

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

test/runtests.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,16 @@ end
6060
d = delayed(identity; options=opts)(c)
6161
@test collect(d) == 20
6262

63+
@test_skip "KernelAbstractions"
64+
#= FIXME
6365
@testset "KernelAbstractions" begin
6466
cuproc = DaggerGPU.processor(:CUDA)
6567
opts = Dagger.Sch.ThunkOptions(;proclist=[cuproc])
6668
A = rand(Float32, 8)
6769
_A = collect(delayed(fill_thunk)(A, 2.3); options=opts)
6870
@test all(_A .== 2.3)
6971
end
72+
=#
7073
end
7174
end
7275

0 commit comments

Comments
 (0)