Skip to content

Commit

Permalink
fix for issue #905 map to lazy_map
Browse files Browse the repository at this point in the history
  • Loading branch information
kishore-nori committed Apr 5, 2024
1 parent 4cf9e8a commit e90bc21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Arrays/CompressedArrays.jl
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function _find_compressed_ones(g)
end

function _lazy_map_compressed(g::CompressedArray...)
vals = map(evaluate, map(gi->gi.values,g)...)
vals = lazy_map(evaluate, map(gi->gi.values,g)...)
ptrs = first(g).ptrs
CompressedArray(vals,ptrs)
end
Expand Down

0 comments on commit e90bc21

Please sign in to comment.