File tree 3 files changed +27
-3
lines changed
3 files changed +27
-3
lines changed Original file line number Diff line number Diff line change 1
1
steps :
2
- - label : " Nvidia GPUs -- LinearOperators .jl"
2
+ - label : " Nvidia GPUs -- LinearOperatorCollection .jl"
3
3
plugins :
4
4
- JuliaCI/julia#v1:
5
5
version : " 1.10"
@@ -13,7 +13,26 @@ steps:
13
13
using TestEnv
14
14
TestEnv.activate();
15
15
Pkg.add("CUDA")
16
- Pkg.add("CuNFFT")
17
16
Pkg.instantiate()
18
17
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")'
19
38
timeout_in_minutes : 30
Original file line number Diff line number Diff line change 1
- using CUDA, CuNFFT
1
+ using CUDA
2
2
3
3
arrayTypes = [CuArray]
4
4
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