graphblas_sparse_linear_algebra 0.62.0

Wrapper for SuiteSparse:GraphBLAS
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    let mimalloc = std::env::var("CARGO_FEATURE_MEMORY_ALLOCATOR_MIMALLOC").is_ok();
    let jemalloc = std::env::var("CARGO_FEATURE_MEMORY_ALLOCATOR_JEMALLOC").is_ok();

    if mimalloc && jemalloc {
        panic!(
            "Features `memory-allocator-mimalloc` and `memory-allocator-jemalloc` are mutually \
             exclusive. Enable only one allocator feature at a time."
        );
    }
}