Skip to content

Update to ndarray 0.12.0 #115

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

Merged
merged 1 commit into from
Sep 1, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ version = "0.2"
default-features = false

[dependencies.ndarray]
version = "0.11.2"
git = "https://github.com/bluss/ndarray"
version = "0.12"
features = ["blas"]
default-features = false

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ There are two ways to link LAPACKE backend:
There are three features corresponding to the backend implementations (`openblas` / `netlib` / `intel-mkl`):

```toml
[depencdencies]
ndarray = "0.11"
[dependencies]
ndarray = "0.12"
ndarray-linalg = { version = "0.9", features = ["openblas"] }
```

Expand All @@ -34,8 +34,8 @@ For the sake of linking flexibility, you can provide LAPACKE implementation (as
You should link a LAPACKE implementation to a final crate (like binary executable or dylib) only, not to a Rust library.

```toml
[depencdencies]
ndarray = "0.11"
[dependencies]
ndarray = "0.12"
ndarray-linalg = "0.9"
openblas-src = "0.5" # or another backend of your choice

Expand All @@ -53,8 +53,8 @@ extern crate openblas_src; // or another backend of your choice
If you creating a library depending on this crate, we encourage you not to link any backend for flexibility:

```toml
[depencdencies]
ndarray = "0.11"
[dependencies]
ndarray = "0.12"
ndarray-linalg = { version = "0.9", default-features = false }
```

Expand Down