Skip to content

Commit

Permalink
Update .buildkite again
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Mar 24, 2023
1 parent fcbf189 commit f903b84
Showing 1 changed file with 20 additions and 18 deletions.
38 changes: 20 additions & 18 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@ steps:
cuda: "*"
command: |
julia --color=yes --project -e '
using Pkg
Pkg.add("CUDA")
Pkg.add("LinearOperators")
Pkg.instantiate()
using CUDA
CUDA.set_runtime_version!(v"11.8")
include("test/gpu/nvidia.jl")'
using Pkg
Pkg.add("CUDA")
Pkg.add("LinearOperators")
Pkg.instantiate()
using CUDA
CUDA.set_runtime_version!(v"11.8")'
julia --color=yes --project -e '
include("test/gpu/nvidia.jl")'
timeout_in_minutes: 30

# - label: "AMD GPUs -- AMDGPU.jl"
Expand All @@ -31,9 +33,9 @@ steps:
# command: |
# julia --color=yes --project -e '
# using Pkg
# Pkg.add("AMDGPU")
# Pkg.instantiate()
# include("test/gpu/amd.jl")'
# Pkg.add("AMDGPU")
# Pkg.instantiate()
# include("test/gpu/amd.jl")'
# timeout_in_minutes: 30

- label: "Intel GPUs -- oneAPI.jl"
Expand All @@ -45,10 +47,10 @@ steps:
intel: "*"
command: |
julia --color=yes --project -e '
using Pkg
Pkg.add("oneAPI")
Pkg.instantiate()
include("test/gpu/intel.jl")'
using Pkg
Pkg.add("oneAPI")
Pkg.instantiate()
include("test/gpu/intel.jl")'
timeout_in_minutes: 30

- label: "Apple M1 GPUs -- Metal.jl"
Expand All @@ -61,8 +63,8 @@ steps:
arch: "aarch64"
command: |
julia --color=yes --project -e '
using Pkg
Pkg.add("Metal")
Pkg.instantiate()
include("test/gpu/metal.jl")'
using Pkg
Pkg.add("Metal")
Pkg.instantiate()
include("test/gpu/metal.jl")'
timeout_in_minutes: 30

0 comments on commit f903b84

Please sign in to comment.