Skip to content
This repository has been archived by the owner on Apr 26, 2021. It is now read-only.

broken in julia 1.3 by added alg keyword argument #18

Closed
JeffBezanson opened this issue Sep 3, 2019 · 0 comments · Fixed by #19
Closed

broken in julia 1.3 by added alg keyword argument #18

JeffBezanson opened this issue Sep 3, 2019 · 0 comments · Fixed by #19

Comments

@JeffBezanson
Copy link

JeffBezanson commented Sep 3, 2019

julia> m = reshape(rand(BigFloat,2*2), (2,2));

julia> svd(m)
ERROR: MethodError: no method matching svd!(::Array{BigFloat,2}; full=false, alg=LinearAlgebra.DivideAndConquer())
Closest candidates are:
  svd!(::AbstractArray{T,2} where T; full, thin) at /home/jeff/.julia/packages/GenericSVD/ky5Qc/src/GenericSVD.jl:11 got unsupported keyword argument "alg"

We could either allow alg to be passed to the svd! method in this package (and ignore it?), or change the stdlib code to only pass alg along if the user requested it.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant