blis_sys2/
lib.rs

1//! This is a binding for the C API for the [BLIS library](https://github.com/flame/blis).
2//!
3//! This crate depends on `blis-src` for the actual BLIS dependency.
4//! **You have to explicitly depend on [`blis-src`](https://docs.rs/blis-src)** to use this crate.
5//! The version of this crate matches the `blis-src` version, not the BLIS version.
6//!
7//! Related crates and alternatives:
8//! - [`blis-src`](https://docs.rs/blis-src): build/link BLIS library
9//! - [BLAS/LAPACK crate family](https://github.com/blas-lapack-rs/blas-lapack-rs.github.io/wiki)
10//! - [`blis-sys`](https://docs.rs/blis-sys): C binding for BLIS, includes its own BLIS build.
11
12#![allow(non_upper_case_globals)]
13#![allow(non_camel_case_types)]
14#![allow(non_snake_case)]
15extern crate blis_src as _;
16include!(concat!(env!("OUT_DIR"), "/bindings.rs"));