Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

eigen for triangular #125

Merged
merged 1 commit into from
Jan 10, 2024
Merged

eigen for triangular #125

merged 1 commit into from
Jan 10, 2024

Conversation

jishnub
Copy link
Member

@jishnub jishnub commented Jan 3, 2024

This uses the triangular structure in the eigenvalue decomposition.

On master,

julia> U = UpperTriangularToeplitz(rand(1000));

julia> @btime eigvals($U);
  9.915 ms (13 allocations: 7.92 MiB)

julia> @btime eigen($U);
  90.046 ms (15 allocations: 16.29 MiB)

This PR

julia> @btime eigvals($U);
  12.535 ns (0 allocations: 0 bytes)

julia> @btime eigen($U);
  68.200 ms (12 allocations: 30.54 MiB)

Copy link

codecov bot commented Jan 3, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (3d47002) 95.25% compared to head (a921dcb) 95.61%.
Report is 5 commits behind head on master.

Additional details and impacted files
@@            Coverage Diff             @@
##           master     #125      +/-   ##
==========================================
+ Coverage   95.25%   95.61%   +0.35%     
==========================================
  Files           9        9              
  Lines         948      957       +9     
==========================================
+ Hits          903      915      +12     
+ Misses         45       42       -3     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link
Contributor

github-actions bot commented Jan 8, 2024

Pull Request Test Coverage Report for Build 7443271105

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage increased (+0.02%) to 95.611%

Totals Coverage Status
Change from base Build 7443258038: 0.02%
Covered Lines: 915
Relevant Lines: 957

💛 - Coveralls

@jishnub jishnub merged commit 465d37a into master Jan 10, 2024
13 checks passed
@jishnub jishnub deleted the jishnub/eigtri branch January 10, 2024 05:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant