#mkl #intel #blas

mkl_link

Library for linking with MKL

3 releases

Uses old Rust 2015

0.1.2 Nov 10, 2016
0.1.1 Nov 10, 2016
0.1.0 Nov 10, 2016

#824 in Machine learning

28 downloads per month
Used in densearray

BSD-2-Clause

3KB
63 lines

libmkl_link

This library statically links various versions of Intel MKL, depending on the enabled features. To actually call the MKL BLAS functions, use a CBLAS FFI crate, such as cblas_ffi.

There are three possible sets of linker args you can invoke:

  • sequential MKL (default)
  • parallel OpenMP-backed MKL (feature "openmp")
  • parallel TBB-backed MKL (feature "tbb"; this pulls in a C++ standard library)

The linked libraries are determined from (https://software.intel.com/en-us/articles/intel-mkl-link-line-advisor). One deviation from the previously mentioned link is that Rust, as far as I know, does not easily support linkage groups (i.e. "-Wl,--start-group" and "-Wl,--end-group" arguments).

No runtime deps