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
+14-6Lines changed: 14 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
# intel-mkl-src
2
2
3
-
|crate | crate.io | description |
4
-
|:-----|:---------|:------------|
5
-
|intel-mkl-src|[](https://crates.io/crates/intel-mkl-src)| Source crate for Intel-MKL |
6
-
|intel-mkl-sys|[](https://crates.io/crates/intel-mkl-sys)| FFI for Intel-MKL [vector math][VM], and [statistical functions][VSL]|
7
-
|intel-mkl-tool|[](https://crates.io/crates/intel-mkl-tool)| CLI utility for redistributing Intel-MKL |
|intel-mkl-src|[](https://crates.io/crates/intel-mkl-src)| Source crate for Intel-MKL|
6
+
|intel-mkl-sys|[](https://crates.io/crates/intel-mkl-sys)| FFI for Intel-MKL [vector math][VM], and [statistical functions][VSL]|
7
+
|intel-mkl-tool|[](https://crates.io/crates/intel-mkl-tool)| CLI utility for redistributing Intel-MKL |
8
8
9
9
Redistribution of Intel MKL as a crate. Tested on Linux, macOS, and Windows (since 0.4.0)
10
10
@@ -13,6 +13,12 @@ Redistribution of Intel MKL as a crate. Tested on Linux, macOS, and Windows (sin
13
13
14
14
## Supported features
15
15
16
+
-`mkl-*-*-*` features specify which MKL to be linked
17
+
-`static` means MKL will be linked statically, and `dynamic` means MKL will be linked dynamically
18
+
-`lp64` means 32-bit integer interface, `ilp64` means 64-bit integer interface
19
+
-`iomp` means MKL uses Intel OpenMP, `seq` means sequential execution, e.g. no parallelization
20
+
- default is `mkl-static-ilp64-seq`, and you must choose one of them.
0 commit comments