We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Unsure of it, but it seems to me that psvd isn't optimal wrt memory allocations.
psvd
julia> x = rand(Float64, 49, 80); julia> @btime svd($x; alg=LinearAlgebra.QRIteration()); 745.601 μs (9 allocations: 125.38 KiB) julia> @btime psvd($x); 998.062 μs (106 allocations: 503.63 KiB)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Unsure of it, but it seems to me that
psvd
isn't optimal wrt memory allocations.The text was updated successfully, but these errors were encountered: