From ca0d6a062e3824690c980dcf85040d45f4c7b630 Mon Sep 17 00:00:00 2001 From: Toshiki Teramura Date: Tue, 23 Jun 2020 14:32:13 +0900 Subject: [PATCH 1/2] intel-mkl-tool 0.2.0+mkl2020.1 --- intel-mkl-src/Cargo.toml | 4 ++-- intel-mkl-sys/Cargo.toml | 4 ++-- intel-mkl-tool/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/intel-mkl-src/Cargo.toml b/intel-mkl-src/Cargo.toml index 7f49faee..af9d630a 100644 --- a/intel-mkl-src/Cargo.toml +++ b/intel-mkl-src/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "intel-mkl-src" -version = "0.6.0-alpha.1" +version = "0.6.0+mkl2020.1" authors = ["Toshiki Teramura "] edition = "2018" @@ -14,7 +14,7 @@ build = "build.rs" links = "mkl_core" [features] -default = ["download", "mkl-dynamic-lp64-iomp"] +default = ["download", "mkl-static-ilp64-seq"] # MKL config # https://software.intel.com/content/www/us/en/develop/articles/intel-math-kernel-library-intel-mkl-and-pkg-config-tool.html diff --git a/intel-mkl-sys/Cargo.toml b/intel-mkl-sys/Cargo.toml index c419fcf9..f0864140 100644 --- a/intel-mkl-sys/Cargo.toml +++ b/intel-mkl-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "intel-mkl-sys" -version = "0.2.0-alpha.0" +version = "0.2.0+mkl2020.1" authors = ["Toshiki Teramura "] edition = "2018" @@ -10,7 +10,7 @@ keywords = ["ffi"] license = "MIT" [features] -default = ["download", "mkl-dynamic-lp64-iomp"] +default = ["download", "mkl-static-ilp64-seq"] # MKL config # https://software.intel.com/content/www/us/en/develop/articles/intel-math-kernel-library-intel-mkl-and-pkg-config-tool.html diff --git a/intel-mkl-tool/Cargo.toml b/intel-mkl-tool/Cargo.toml index 990d29eb..a11feb67 100644 --- a/intel-mkl-tool/Cargo.toml +++ b/intel-mkl-tool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "intel-mkl-tool" -version = "0.2.0-alpha.1" +version = "0.2.0+mkl2020.1" authors = ["Toshiki Teramura "] edition = "2018" From c9470f5f1c70ddf1295114c2b58ebfeb3322ae58 Mon Sep 17 00:00:00 2001 From: Toshiki Teramura Date: Tue, 23 Jun 2020 14:37:19 +0900 Subject: [PATCH 2/2] Fix dependencies --- intel-mkl-src/Cargo.toml | 2 +- intel-mkl-sys/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/intel-mkl-src/Cargo.toml b/intel-mkl-src/Cargo.toml index af9d630a..a95a465a 100644 --- a/intel-mkl-src/Cargo.toml +++ b/intel-mkl-src/Cargo.toml @@ -34,4 +34,4 @@ xdg-data-home = [] [build-dependencies] anyhow = "1" -intel-mkl-tool = { version = "0.2.0-alpha.1", path = "../intel-mkl-tool", default-features = false } +intel-mkl-tool = { version = "0.2.0", path = "../intel-mkl-tool", default-features = false } diff --git a/intel-mkl-sys/Cargo.toml b/intel-mkl-sys/Cargo.toml index f0864140..7248d41d 100644 --- a/intel-mkl-sys/Cargo.toml +++ b/intel-mkl-sys/Cargo.toml @@ -27,7 +27,7 @@ mkl-dynamic-ilp64-seq = ["intel-mkl-src/mkl-dynamic-ilp64-seq"] download = ["intel-mkl-src/download"] [dependencies] -intel-mkl-src = { path = "../intel-mkl-src", version = "0.6.0-alpha.0", default-features = false } +intel-mkl-src = { path = "../intel-mkl-src", version = "0.6.0", default-features = false } [dev-dependencies] criterion = "0.3.0"