File tree Expand file tree Collapse file tree 3 files changed +27
-3
lines changed
Expand file tree Collapse file tree 3 files changed +27
-3
lines changed Original file line number Diff line number Diff line change 11steps :
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
Original file line number Diff line number Diff line change 1- using CUDA, CuNFFT
1+ using CUDA
22
33arrayTypes = [CuArray]
44
Original file line number Diff line number Diff line change 1+ using AMDGPU
2+
3+ arrayTypes = [ROCArray]
4+
5+ include (joinpath (@__DIR__ (), " .." , " runtests.jl" ))
You can’t perform that action at this time.
0 commit comments