Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove redundant conversion in structured matrix broadcasting (JuliaL…
…ang#55695) The additional construction is unnecessary, as we are already constructing a `Matrix`. Performance: ```julia julia> using LinearAlgebra julia> U = UpperTriangular(rand(1000,1000)); julia> L = LowerTriangular(rand(1000,1000)); julia> @Btime $U .+ $L; 1.956 ms (6 allocations: 15.26 MiB) # nightly 1.421 ms (3 allocations: 7.63 MiB) # This PR ```
- Loading branch information