baracuda-cutensor 0.0.1-alpha.69

Safe Rust wrappers for NVIDIA cuTENSOR. Scaffolding at v0.1.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! cuTENSOR presence probe. cuTENSOR is a separate NVIDIA download and
//! is not part of the default CUDA Toolkit install — the test gracefully
//! skips if the library isn't available.

#[test]
fn cutensor_probe() {
    match baracuda_cutensor::probe() {
        Ok(()) => eprintln!("cuTENSOR loaded"),
        Err(e) => eprintln!("cuTENSOR not available on this host: {e:?}"),
    }
}