collenchyma 0.0.8

high-performance computation on any hardware
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate collenchyma as co;

#[cfg(test)]
#[cfg(feature = "native")]
mod framework_native_spec {
    use co::prelude::*;

    #[test]
    fn it_works() {
        let frm = Native::new();
        assert_eq!(frm.hardwares().len(), 1);
    }
}