-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9942d0c
commit 0c46f2f
Showing
3 changed files
with
68 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
steps: | ||
- label: "Nvidia GPUs -- CUDA.jl" | ||
plugins: | ||
- JuliaCI/julia#v1: | ||
version: 1.9 | ||
agents: | ||
queue: "juliagpu" | ||
cuda: "*" | ||
command: | | ||
julia --color=yes --project -e ' | ||
using Pkg | ||
Pkg.add("CUDA") | ||
Pkg.add("LinearOperators") | ||
Pkg.instantiate() | ||
using CUDA | ||
julia --color=yes --project -e ' | ||
include("test/gpu/nvidia.jl")' | ||
timeout_in_minutes: 30 | ||
|
||
- label: "AMD GPUs -- AMDGPU.jl" | ||
plugins: | ||
- JuliaCI/julia#v1: | ||
version: 1.9 | ||
agents: | ||
queue: "juliagpu" | ||
rocm: "*" | ||
rocmgpu: "gfx1031" | ||
env: | ||
JULIA_NUM_THREADS: 4 | ||
JULIA_AMDGPU_CORE_MUST_LOAD: "1" | ||
JULIA_AMDGPU_HIP_MUST_LOAD: "1" | ||
JULIA_AMDGPU_DISABLE_ARTIFACTS: "1" | ||
command: | | ||
julia --color=yes --project -e ' | ||
using Pkg | ||
# Pkg.add("AMDGPU") | ||
Pkg.add(url="https://github.com/JuliaGPU/AMDGPU.jl", rev="master") | ||
Pkg.instantiate() | ||
include("test/gpu/amd.jl")' | ||
timeout_in_minutes: 30 | ||
|
||
- label: "Intel GPUs -- oneAPI.jl" | ||
plugins: | ||
- JuliaCI/julia#v1: | ||
version: 1.9 | ||
agents: | ||
queue: "juliagpu" | ||
intel: "*" | ||
command: | | ||
julia --color=yes --project -e ' | ||
using Pkg | ||
Pkg.add("oneAPI") | ||
Pkg.instantiate() | ||
include("test/gpu/intel.jl")' | ||
timeout_in_minutes: 30 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Drops on the order 0.01% are typical even when no change occurs | ||
# Having the threshold set a little higher (0.5%) than that makes it | ||
# a little more tolerant to fluctuations | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
threshold: 0.5% | ||
patch: | ||
default: | ||
threshold: 0.5% |