mirror of
https://github.com/huggingface/candle.git
synced 2025-06-17 02:58:50 +00:00
7 lines
212 B
Rust
7 lines
212 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();
|
|
}
|