linfa 0.8.0

A Machine Learning framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(any(feature = "openblas-system", feature = "netlib-system"))]
fn main() {
    println!("cargo:rustc-link-lib=lapacke");
    println!("cargo:rustc-link-lib=lapack");
    println!("cargo:rustc-link-lib=cblas");
}

#[cfg(not(any(feature = "openblas-system", feature = "netlib-system")))]
fn main() {}