rustorch 0.6.29

Production-ready PyTorch-compatible deep learning library in Rust with special mathematical functions (gamma, Bessel, error functions), statistical distributions, Fourier transforms (FFT/RFFT), matrix decomposition (SVD/QR/LU/eigenvalue), automatic differentiation, neural networks, computer vision transforms, complete GPU acceleration (CUDA/Metal/OpenCL), SIMD optimizations, parallel processing, WebAssembly browser support, comprehensive distributed learning support, and performance validation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! PyTorch to RusTorch conversion module
//! PyTorchからRusTorchへの変換モジュール

/// Simplified PyTorch to RusTorch conversion implementation
/// PyTorchからRusTorchへの簡略変換実装
pub mod pytorch_to_rustorch_simplified;

/// Model architecture parsing and analysis (modular structure)
/// モデルアーキテクチャの解析と分析(モジュラー構造)
pub mod parser;

/// Model architecture parsing and analysis (legacy interface)
/// モデルアーキテクチャの解析と分析(レガシーインターフェース)
pub mod model_parser;

pub use model_parser::*;
pub use pytorch_to_rustorch_simplified::*;