From 524079b772b8fce0537161f3ec5d782df3c4d915 Mon Sep 17 00:00:00 2001 From: bluss Date: Sun, 10 Jan 2021 22:35:48 +0100 Subject: [PATCH] API: Update blas-src dep to 0.7.0 --- Cargo.toml | 2 +- README.rst | 13 +++++++------ blas-tests/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b225418f1..301d1b566 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ approx = { version = "0.4", optional = true , default-features = false } # Use via the `blas` crate feature! cblas-sys = { version = "0.1.4", optional = true, default-features = false } -blas-src = { version = "0.6.1", optional = true, default-features = false } +blas-src = { version = "0.7.0", optional = true, default-features = false } libc = { version = "0.2.82", optional = true } matrixmultiply = { version = "0.3.0", default-features = false} diff --git a/README.rst b/README.rst index 3cfcc8253..05ff48fb8 100644 --- a/README.rst +++ b/README.rst @@ -86,14 +86,14 @@ How to use with cargo How to enable blas integration. Depend on ``blas-src`` directly to pick a blas provider. Depend on the same ``blas-src`` version as ``ndarray`` does, for the -selection to work. A proposed configuration using system openblas is shown +selection to work. An example configuration using system openblas is shown below. Note that only end-user projects (not libraries) should select provider:: [dependencies] ndarray = { version = "0.14.0", features = ["blas"] } - blas-src = { version = "0.6.1", default-features = false, features = ["openblas"] } + blas-src = { version = "0.7.0", default-features = false, features = ["openblas"] } openblas-src = { version = "0.9", default-features = false, features = ["cblas", "system"] } For official releases of ``ndarray``, the versions are: @@ -101,10 +101,11 @@ For official releases of ``ndarray``, the versions are: =========== ============ ================ ``ndarray`` ``blas-src`` ``openblas-src`` =========== ============ ================ -0.14.0 0.6.1 0.9.0 -0.13.0 0.2.0 0.6.0 -0.12.\* 0.2.0 0.6.0 -0.11.\* 0.1.2 0.5.0 +0.15 0.7.0 0.9.0 +0.14 0.6.1 0.9.0 +0.13 0.2.0 0.6.0 +0.12 0.2.0 0.6.0 +0.11 0.1.2 0.5.0 =========== ============ ================ Recent Changes diff --git a/blas-tests/Cargo.toml b/blas-tests/Cargo.toml index da9aad98f..4d0792fd0 100644 --- a/blas-tests/Cargo.toml +++ b/blas-tests/Cargo.toml @@ -10,7 +10,7 @@ test = false [dev-dependencies] approx = "0.4" ndarray = { path = "../", features = ["approx", "blas"] } -blas-src = { version = "0.6.1", default-features = false, features = ["openblas"] } +blas-src = { version = "0.7.0", default-features = false, features = ["openblas"] } openblas-src = { version = "0.9.0", default-features = false, features = ["cblas", "system"] } defmac = "0.2" num-traits = "0.2"