Skip to content

Commit

Permalink
Reorganize the tests with CUDA, Enzyme and Zygote
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Nov 26, 2024
1 parent 0699d42 commit 6c30440
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ steps:
queue: "juliagpu"
cuda: "*"
command: |
julia --color=yes --project=test -e 'using Pkg; Pkg.add("CUDA"); Pkg.instantiate()'
julia --color=yes --project=test -e 'using Pkg; Pkg.add("CUDA"); Pkg.dev("."); Pkg.instantiate()'
julia --color=yes --project=test -e 'include("test/gpu.jl")'
timeout_in_minutes: 30

Expand All @@ -20,7 +20,7 @@ steps:
os: "linux"
arch: "x86_64"
command: |
julia --color=yes --project=test -e 'using Pkg; Pkg.add("Enzyme"); Pkg.instantiate()'
julia --color=yes --project=test -e 'using Pkg; Pkg.add("Enzyme"); Pkg.dev("."); Pkg.instantiate()'
julia --color=yes --project=test -e 'include("test/enzyme.jl")'
timeout_in_minutes: 30

Expand All @@ -33,6 +33,6 @@ steps:
os: "linux"
arch: "x86_64"
command: |
julia --color=yes --project=test -e 'using Pkg; Pkg.add("Zygote"); Pkg.instantiate()'
julia --color=yes --project=test -e 'using Pkg; Pkg.add("Zygote"); Pkg.dev("."); Pkg.instantiate()'
julia --color=yes --project=test -e 'include("test/zygote.jl")'
timeout_in_minutes: 30

0 comments on commit 6c30440

Please sign in to comment.