You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# intel-mkl-src
2
2
3
3
|crate | crate.io | description |
4
-
|:-----|:--------:|:------------|
4
+
|:-----|:---------|:------------|
5
5
|intel-mkl-src|[](https://crates.io/crates/intel-mkl-src)| Source crate for Intel-MKL |
6
6
|intel-mkl-sys|[](https://crates.io/crates/intel-mkl-sys)| FFI for Intel-MKL [vector math][VM], and [statistical functions][VSL]|
7
7
|intel-mkl-tool|[](https://crates.io/crates/intel-mkl-tool)| CLI utility for redistributing Intel-MKL |
@@ -34,10 +34,9 @@ Please use `blas-sys`, `lapack-sys`, or `fftw-sys` to use BLAS, LAPACK, FFTW int
34
34
fftw-sys = { version = "0.4", features = ["intel-mkl"] }
35
35
```
36
36
37
-
## Find system MKL libraries
37
+
## How to find system MKL libraries
38
38
39
-
This crate will download archive from AWS S3 `rust-intel-mkl` bucket if no MKL library installed by other way, e.g. [apt]/[yum].
40
-
`intel-mkl-src` seeks MKL in following manner:
39
+
This crate seeks system MKL libraries, e.g. installed by [apt], [yum], or official manual installer, as following manner:
41
40
42
41
- Check `${OUT_DIR}` where previous build has downloaded
43
42
- Seek using [pkg-config] crate
@@ -50,6 +49,8 @@ This crate will download archive from AWS S3 `rust-intel-mkl` bucket if no MKL l
50
49
- Seek a directory set by `${MKLROOT}` environment variable
51
50
- Seek `/opt/intel/mkl`
52
51
52
+
If not found any MKL library, this crate will download archive from AWS S3 `rust-intel-mkl` bucket.
0 commit comments