Skip to content

Commit 476979e

Browse files
committed
Disable compute-sanitizer testing.
1 parent e6ab661 commit 476979e

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

.buildkite/pipeline.yml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -213,29 +213,29 @@ steps:
213213
if: build.message !~ /\[skip docs\]/ && !build.pull_request.draft
214214
timeout_in_minutes: 30
215215

216-
- label: "Compute sanitizer"
217-
plugins:
218-
- JuliaCI/julia#v1:
219-
version: 1.8
220-
- JuliaCI/julia-test#v1:
221-
julia_args: "-g2"
222-
test_args: "--sanitize --quickfail --jobs=2"
223-
- JuliaCI/julia-coverage#v1:
224-
codecov: true
225-
dirs:
226-
- src
227-
- lib
228-
- examples
229-
agents:
230-
queue: "juliagpu"
231-
cuda: "*"
232-
env:
233-
JULIA_CUDA_USE_COMPAT: 'false' # NVIDIA bug #3418723: injection tools prevent probing libcuda
234-
commands: |
235-
julia --project -e 'using CUDA; CUDA.set_runtime_version!(v"11.6")'
236-
if: build.message !~ /\[skip tests\]/ &&
237-
build.branch =~ /^master$$/
238-
timeout_in_minutes: 240
216+
# XXX: fails often, and is very slow
217+
#- label: "Compute sanitizer"
218+
# plugins:
219+
# - JuliaCI/julia#v1:
220+
# version: 1.8
221+
# - JuliaCI/julia-test#v1:
222+
# julia_args: "-g2"
223+
# test_args: "--sanitize --quickfail --jobs=2"
224+
# - JuliaCI/julia-coverage#v1:
225+
# codecov: true
226+
# dirs:
227+
# - src
228+
# - lib
229+
# - examples
230+
# agents:
231+
# queue: "juliagpu"
232+
# cuda: "*"
233+
# env:
234+
# JULIA_CUDA_USE_COMPAT: 'false' # NVIDIA bug #3418723: injection tools prevent probing libcuda
235+
# commands: |
236+
# julia --project -e 'using CUDA; CUDA.set_runtime_version!(v"11.6")'
237+
# if: build.message !~ /\[skip tests\]/
238+
# timeout_in_minutes: 240
239239

240240
# we want to benchmark every commit on the master branch, even if it failed CI
241241
- wait: ~

src/initialization.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ function __init__()
6161
end
6262
driver = driver_version()
6363

64-
if driver < v"11" || driver >= v"13"
65-
@error "This version of CUDA.jl only supports NVIDIA drivers for CUDA 11.x or 12.x (yours is for CUDA $driver)"
66-
_initialization_error[] = "CUDA driver too old or too new"
64+
if driver < v"11"
65+
@error "This version of CUDA.jl only supports NVIDIA drivers for CUDA 11.x or higher (yours is for CUDA $driver)"
66+
_initialization_error[] = "CUDA driver too old"
6767
return
6868
end
6969

0 commit comments

Comments
 (0)