Skip to content

Commit a55cce6

Browse files
committed
Fix tests
1 parent 44e75b9 commit a55cce6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

ext/SparseMatrixColoringsCUDAExt.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ function SMC.StarSetColoringResult(
4747
A::CuSparseMatrixCSC,
4848
ag::SMC.AdjacencyGraph{T},
4949
color::Vector{<:Integer},
50-
star_set::SMC.StarSet{<:Integer};
51-
decompression_uplo::Symbol=:F,
50+
star_set::SMC.StarSet{<:Integer},
51+
decompression_uplo::Symbol,
5252
) where {T<:Integer}
5353
@assert decompression_uplo == :F
5454
group = SMC.group_by_color(T, color)
@@ -87,8 +87,8 @@ function SMC.StarSetColoringResult(
8787
A::CuSparseMatrixCSR,
8888
ag::SMC.AdjacencyGraph{T},
8989
color::Vector{<:Integer},
90-
star_set::SMC.StarSet{<:Integer};
91-
decompression_uplo::Symbol=:F,
90+
star_set::SMC.StarSet{<:Integer},
91+
decompression_uplo::Symbol,
9292
) where {T<:Integer}
9393
@assert decompression_uplo == :F
9494
group = SMC.group_by_color(T, color)

0 commit comments

Comments
 (0)