Skip to content

Commit 34dc3aa

Browse files
committed
chore: bump CUDA compat to v6 (cuSPARSE now a separate package)
1 parent 09fc114 commit 34dc3aa

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

Project.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "SparseMatrixColorings"
22
uuid = "0a514795-09f3-496d-8182-132a7b665d35"
3+
version = "0.4.27"
34
authors = ["Guillaume Dalle", "Alexis Montoison"]
4-
version = "0.4.26"
55

66
[deps]
77
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"
@@ -17,16 +17,18 @@ CliqueTrees = "60701a23-6482-424a-84db-faee86b9b1f8"
1717
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
1818
JuMP = "4076af6c-e467-56ae-b986-b466b2749572"
1919
MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
20+
cuSPARSE = "b26da814-b3bc-49ef-b0ee-c816305aa060"
2021

2122
[extensions]
22-
SparseMatrixColoringsCUDAExt = "CUDA"
23+
SparseMatrixColoringsCUDAExt = ["CUDA", "cuSPARSE"]
2324
SparseMatrixColoringsCliqueTreesExt = "CliqueTrees"
2425
SparseMatrixColoringsColorsExt = "Colors"
2526
SparseMatrixColoringsJuMPExt = ["JuMP", "MathOptInterface"]
2627

2728
[compat]
2829
ADTypes = "1.2.1"
29-
CUDA = "5.8.2"
30+
CUDA = "6.0.0"
31+
cuSPARSE = "6.0.0"
3032
CliqueTrees = "1"
3133
Colors = "0.12.11, 0.13"
3234
DocStringExtensions = "0.8,0.9"

ext/SparseMatrixColoringsCUDAExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module SparseMatrixColoringsCUDAExt
33
import SparseMatrixColorings as SMC
44
using SparseArrays: SparseMatrixCSC, rowvals, nnz, nzrange
55
using CUDA: CuVector, CuMatrix
6-
using CUDA.CUSPARSE: AbstractCuSparseMatrix, CuSparseMatrixCSC, CuSparseMatrixCSR
6+
using cuSPARSE: AbstractCuSparseMatrix, CuSparseMatrixCSC, CuSparseMatrixCSR
77

88
SMC.matrix_versions(A::AbstractCuSparseMatrix) = (A,)
99

test/Project.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,3 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
2323
SparseMatrixColorings = "0a514795-09f3-496d-8182-132a7b665d35"
2424
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
2525
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
26-
27-
[compat]
28-
CUDA = "=5.9.5"

test/cuda.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ import SparseMatrixColorings as SMC
66
using StableRNGs
77
using Test
88

9-
include("utils.jl")
10-
119
rng = StableRNG(63)
1210

1311
asymmetric_params = vcat(

0 commit comments

Comments
 (0)