tetration 0.1.5

Tetration tensor file format: Rust library (tetration) and tet CLI
Documentation
1
2
3
4
5
6
7
8
//! Utils integration tests.

use crate::utils::host_memory::available_memory_bytes;

#[test]
fn host_memory_probe_does_not_panic() {
    let _ = available_memory_bytes();
}