Skip to content

Commit ee3abbb

Browse files
committed
ci(buildkite): AMDGPU errors out (segfault)
1 parent b4619af commit ee3abbb

File tree

3 files changed

+0
-34
lines changed

3 files changed

+0
-34
lines changed

.buildkite/pipeline.yml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -22,30 +22,6 @@ steps:
2222
julia:
2323
- "1"
2424

25-
- label: ":julia: Julia {{matrix.julia}} + AMD GPU"
26-
plugins:
27-
- JuliaCI/julia#v1:
28-
version: "{{matrix.julia}}"
29-
- JuliaCI/julia-test#v1:
30-
test_args: "--quickfail"
31-
- JuliaCI/julia-coverage#v1:
32-
codecov: true
33-
dirs:
34-
- src
35-
- ext
36-
agents:
37-
queue: "juliagpu"
38-
rocm: "*"
39-
rocmgpu: "*"
40-
env:
41-
BACKEND_GROUP: "AMDGPU"
42-
if: build.message !~ /\[skip tests\]/
43-
timeout_in_minutes: 240
44-
matrix:
45-
setup:
46-
julia:
47-
- "1"
48-
4925
- label: ":open_book: Documentation"
5026
plugins:
5127
- JuliaCI/julia#v1:

test/runtests.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ const BACKEND_GROUP = lowercase(get(ENV, "BACKEND_GROUP", "all"))
66
const EXTRA_PKGS = String[]
77

88
(BACKEND_GROUP == "all" || BACKEND_GROUP == "cuda") && push!(EXTRA_PKGS, "LuxCUDA")
9-
(BACKEND_GROUP == "all" || BACKEND_GROUP == "amdgpu") && push!(EXTRA_PKGS, "AMDGPU")
109

1110
if !isempty(EXTRA_PKGS)
1211
@info "Installing Extra Packages for testing" EXTRA_PKGS=EXTRA_PKGS

test/shared_testsetup.jl

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,18 @@ if BACKEND_GROUP == "all" || BACKEND_GROUP == "cuda"
1212
using LuxCUDA
1313
end
1414

15-
if BACKEND_GROUP == "all" || BACKEND_GROUP == "amdgpu"
16-
using AMDGPU
17-
end
18-
1915
GPUArraysCore.allowscalar(false)
2016

2117
cpu_testing() = BACKEND_GROUP == "all" || BACKEND_GROUP == "cpu"
2218
function cuda_testing()
2319
return (BACKEND_GROUP == "all" || BACKEND_GROUP == "cuda") &&
2420
MLDataDevices.functional(CUDADevice)
2521
end
26-
function amdgpu_testing()
27-
return (BACKEND_GROUP == "all" || BACKEND_GROUP == "amdgpu") &&
28-
MLDataDevices.functional(AMDGPUDevice)
29-
end
3022

3123
const MODES = begin
3224
modes = []
3325
cpu_testing() && push!(modes, ("cpu", Array, CPUDevice(), false))
3426
cuda_testing() && push!(modes, ("cuda", CuArray, CUDADevice(), true))
35-
amdgpu_testing() && push!(modes, ("amdgpu", ROCArray, AMDGPUDevice(), true))
3627
modes
3728
end
3829

0 commit comments

Comments
 (0)