• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

JuliaLang / julia / #37864
77%

Build:
DEFAULT BRANCH: master
Ran 08 Aug 2024 10:31AM UTC
Jobs 1
Files 361
Run time 4min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

08 Aug 2024 02:12AM UTC coverage: 87.613% (+0.01%) from 87.599%
#37864

push

local

web-flow
Improve performance in `Bidiagonal` times `Diagonal` (#55175)

This adds specialized methods to improve performance, and avoid
allocations that were arising currently from the fallback tridiagonal
implementations.

```julia
julia> using LinearAlgebra, BenchmarkTools

julia> n = 10000; B = Bidiagonal(rand(n), rand(n-1), :U); D = Diagonal(rand(size(B,1))); C = similar(B, size(B));

julia> @btime mul!($C, $B, $D);
  25.552 ms (3 allocations: 78.19 KiB) # v"1.12.0-DEV.870"
  25.559 ms (0 allocations: 0 bytes) # This PR

julia> C = similar(B);

julia> @btime mul!($C, $B, $D);
  23.551 μs (3 allocations: 78.19 KiB)  # v"1.12.0-DEV.870"
  7.123 μs (0 allocations: 0 bytes) # This PR, specialized method
```

112 of 117 new or added lines in 1 file covered. (95.73%)

10 existing lines in 6 files now uncovered.

77896 of 88909 relevant lines covered (87.61%)

16086101.09 hits per line

New Missed Lines in Diff

Lines Coverage ∆ File
5
96.55
0.22% stdlib/LinearAlgebra/src/bidiag.jl

Uncovered Existing Lines

Lines Coverage ∆ File
1
90.91
-0.41% stdlib/Random/src/generation.jl
1
75.68
-2.7% base/gcutils.jl
1
89.67
-0.05% base/compiler/tfuncs.jl
2
90.29
-0.13% base/multidimensional.jl
2
98.27
-0.87% base/bitset.jl
3
98.21
0.07% base/strings/unicode.jl
Jobs
ID Job ID Ran Files Coverage
1 #37864.1 08 Aug 2024 10:31AM UTC 361
87.61
Source Files on build #37864
  • Tree
  • List 361
  • Changed 253
  • Source Changed 0
  • Coverage Changed 9
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • c767032b on github
  • Prev Build on master
  • Next Build on master
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc