We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa0cd58 commit e28e256Copy full SHA for e28e256
stdlib/SparseArrays/src/higherorderfns.jl
@@ -1128,7 +1128,7 @@ function copy(bc::Broadcasted{PromoteToSparse})
1128
if can_skip_sparsification(bcf.f, bcf.args...)
1129
return _copy(bcf.f, bcf.args...)
1130
elseif is_supported_sparse_broadcast(bcf.args...)
1131
- return broadcast(bcf.f, map(_sparsifystructured, bcf.args)...)
+ return _copy(bcf.f, map(_sparsifystructured, bcf.args)...)
1132
else
1133
return copy(convert(Broadcasted{Broadcast.DefaultArrayStyle{length(axes(bc))}}, bc))
1134
end
0 commit comments