Files
candle/candle-core/tests/pth_tests.rs
2024-02-06 12:06:06 +01:00

7 lines
209 B
Rust

/// Regression test for pth files not loading on Windows.
#[test]
fn test_pth() {
let tensors = candle_core::pickle::PthTensors::new("tests/test.pt").unwrap();
tensors.get("test").unwrap().unwrap();
}