Match Octave/Numpy's minimum RWORK size for gesdd. Fixes #4016 · JuliaLang/julia@9f60588 (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit 9f60588
File tree
1 file changed
lines changed
1 file changed
lines changed
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -858,7 +858,7 @@ for (geev, gesvd, gesdd, ggsvd, elty, relty) in | ||
858 | 858 | S = Array($relty, minmn) |
859 | 859 | cmplx = iseltype(A,Complex) |
860 | 860 | if cmplx |
861 | - rwork = Array($relty, job == 'N' ? 5*minmn : | |
861 | + rwork = Array($relty, job == 'N' ? 7*minmn : | |
862 | 862 | minmn*max(5*minmn+7, 2*max(m,n)+2*minmn+1)) |
863 | 863 | end |
864 | 864 | iwork = Array(BlasInt, 8*minmn) |