We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0da5429 commit d9fc042Copy full SHA for d9fc042
2 files changed
.buildkite/pipeline.yml
@@ -0,0 +1,14 @@
1
+steps:
2
+ - label: "DI GPU tests"
3
+ if: |
4
+ !build.pull_request.draft &&
5
+ build.pull_request.labels includes "gpu"
6
+ plugins:
7
+ - JuliaCI/julia#v1:
8
+ version: "1"
9
+ command: |
10
+ julia ./DifferentiationInterface/test/GPU/CUDA/simple.jl
11
+ agents:
12
+ queue: "juliagpu"
13
+ cuda: "*"
14
+ timeout_in_minutes: 60
DifferentiationInterface/test/GPU/CUDA/simple.jl
@@ -0,0 +1,5 @@
+@info "Testing on CUDA"
+using Pkg
+Pkg.add("CUDA")
+using CUDA
+CUDA.versioninfo()
0 commit comments