We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0f0df3 commit 29235f4Copy full SHA for 29235f4
.buildkite/pipeline.yml
@@ -30,9 +30,6 @@ steps:
30
- "1.10-nightly"
31
- "nightly"
32
adjustments:
33
- - with:
34
- julia: "1.10-nightly"
35
- soft_fail: true
36
- with:
37
julia: "nightly"
38
soft_fail: true
test/libraries/cusparse/reduce.jl
@@ -1,6 +1,7 @@
1
using CUDA.CUSPARSE, SparseArrays
2
3
-if VERSION >= v"1.7"
+# XXX: these tests cause GC corruption on 1.10+ (see JuliaGPU/CUDA.jl#2027)
4
+if VERSION >= v"1.7" && VERSION < v"1.10-"
5
6
m,n = 5,6
7
p = 0.5
0 commit comments