-
Notifications
You must be signed in to change notification settings - Fork 84
getting no method named svd
found for reference &ArrayBase<OwnedRepr<T>, Dim<[usize; 2]>>
#289
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
Comments
The versions of |
Thanks, Is there any way to run locally with the unreleased version of ndarray-linalg. That was what I was trying to do as I am using some features in ndarray 1.15. Also is there anything I can do to help get a 0.15 version released? Is there a list pre-0.15 release issues? |
I'm not sure about the status of the next version of [dependencies]
ndarray = "0.15"
ndarray-linalg = { git = "https://github.com/rust-ndarray/ndarray-linalg.git", branch = "use-build-uninit", features = ["openblas"] } This specifies the branch from #287 and the OpenBLAS backend, but you could choose a different version or backend. See the Cargo docs for more information. |
Just as a follow up on this, I was not able to get this working without explicitly downloading the source from github and including it by path. i.e. [dependencies.ndarray]
version = "=0.15.1"
features = ["blas", "approx", "std"]
default-features = false
[dependencies.ndarray-linalg]
path = "../ndarray-linalg/ndarray-linalg"
features = ["openblas-static"]
[dependencies.lax]
path = "../ndarray-linalg/lax"
default-features = false |
Apologies to add to this issue. Is there an approximate timeline for the release of the next version of ndarray-linalg? For a project I have already written a couple of components using ndarray 0.15 and now notice that I should have used ndarray 0.14 for ndarray-linalg compatibility. The question is whether to downgrade 0.15 specific library calls to 0.14 compatible versions in my already written code or to simply wait until the next ndarray-linalg version is released. |
Uh oh!
There was an error while loading. Please reload this page.
Not sure if this is the write place to ask such questions but I couldn't find anywhere else more specific. I am trying to implement the (Moore-Penrose) pseudo-inverse of a matrix[1]. My code currently looks like
I am running into issues getting
the dependencies part of my Cargo.toml file is the same versions as the ndarray-linalg crate on github[2]
Any idea's what is going on here. I downloaded the ndarray-linalg source from github and the test run fine with
$ cargo test --features=openblas svd
The text was updated successfully, but these errors were encountered: