Skip to content

Commit e28e256

Browse files
committed
Simply call _copy instead of passing through the broadcast machinery again
1 parent fa0cd58 commit e28e256

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/SparseArrays/src/higherorderfns.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ function copy(bc::Broadcasted{PromoteToSparse})
11281128
if can_skip_sparsification(bcf.f, bcf.args...)
11291129
return _copy(bcf.f, bcf.args...)
11301130
elseif is_supported_sparse_broadcast(bcf.args...)
1131-
return broadcast(bcf.f, map(_sparsifystructured, bcf.args)...)
1131+
return _copy(bcf.f, map(_sparsifystructured, bcf.args)...)
11321132
else
11331133
return copy(convert(Broadcasted{Broadcast.DefaultArrayStyle{length(axes(bc))}}, bc))
11341134
end

0 commit comments

Comments
 (0)