Skip to content

Commit 5c1b27f

Browse files
committed
Update GPU buildkite tests
1 parent b835266 commit 5c1b27f

File tree

3 files changed

+27
-3
lines changed

3 files changed

+27
-3
lines changed

.buildkite/pipeline.yml

+21-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
steps:
2-
- label: "Nvidia GPUs -- LinearOperators.jl"
2+
- label: "Nvidia GPUs -- LinearOperatorCollection.jl"
33
plugins:
44
- JuliaCI/julia#v1:
55
version: "1.10"
@@ -13,7 +13,26 @@ steps:
1313
using TestEnv
1414
TestEnv.activate();
1515
Pkg.add("CUDA")
16-
Pkg.add("CuNFFT")
1716
Pkg.instantiate()
1817
include("test/gpu/cuda.jl")'
18+
timeout_in_minutes: 30
19+
20+
steps:
21+
- label: "AMD GPUs -- LinearOperatorCollection.jl"
22+
plugins:
23+
- JuliaCI/julia#v1:
24+
version: "1.10"
25+
agents:
26+
queue: "juliagpu"
27+
rocm: "*"
28+
rocmgpu: "*"
29+
command: |
30+
julia --color=yes --project -e '
31+
using Pkg
32+
Pkg.add("TestEnv")
33+
using TestEnv
34+
TestEnv.activate();
35+
Pkg.add("AMDGPU")
36+
Pkg.instantiate()
37+
include("test/gpu/rocm.jl")'
1938
timeout_in_minutes: 30

test/gpu/cuda.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using CUDA, CuNFFT
1+
using CUDA
22

33
arrayTypes = [CuArray]
44

test/gpu/rocm.jl

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
using AMDGPU
2+
3+
arrayTypes = [ROCArray]
4+
5+
include(joinpath(@__DIR__(), "..", "runtests.jl"))

0 commit comments

Comments
 (0)