Skip to content

Commit

Permalink
Perf
Browse files Browse the repository at this point in the history
  • Loading branch information
gdalle committed Oct 7, 2024
1 parent 1db3316 commit a4e170f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/decompression.jl
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ function decompress!(
symmetric_color = column_colors(result.symmetric_result)
_, col_color_ind = remap_colors(symmetric_color[1:n])
_, row_color_ind = remap_colors(symmetric_color[(n + 1):(n + m)])
B = zeros(T, n + m, length(unique(symmetric_color)))
B = zeros(T, n + m, maximum(symmetric_color))
for c in axes(B, 2)
if haskey(col_color_ind, c) # some columns were colored with c
B[(n + 1):(n + m), c] .+= @view Bc[:, col_color_ind[c]]
Expand Down

0 comments on commit a4e170f

Please sign in to comment.