You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This adds specializations for `istril(::UpperTriangular)` and
`istriu(::LowerTriangular)`, and similarly for the unit triangular
matrices. By forwarding the operations to the parent, we may improve
performance:
```julia
julia> Z = zeros(400,400);
julia> @Btime istril(UpperTriangular($Z));
115.105 μs (0 allocations: 0 bytes) # master
20.188 μs (0 allocations: 0 bytes) # this PR
```
0 commit comments