27 lines
850 B
Rust
27 lines
850 B
Rust
//! Scientific Computing Infrastructure
|
|
//!
|
|
//! High-performance scientific computing with cuSOLVER GPU acceleration
|
|
//! for linear algebra operations, providing 5-25x speedup over CPU implementations.
|
|
|
|
pub mod fft;
|
|
pub mod optimization;
|
|
pub mod parallel;
|
|
pub mod solvers;
|
|
|
|
// cuSOLVER-enhanced scientific computing
|
|
pub mod cusolver_enhanced;
|
|
|
|
pub use fft::{FFTProcessor, StatisticalAnalyzer};
|
|
pub use optimization::OptimizationEngine;
|
|
pub use parallel::{DistributedSolver, GPUKernel, ParallelSolver};
|
|
pub use solvers::{
|
|
AdamsBashforth, CG, CrankNicolson, EigenSolver, GMRES, LinearSolver, ODESolver, PDESolver,
|
|
RungeKutta,
|
|
};
|
|
|
|
// cuSOLVER-enhanced exports
|
|
pub use cusolver_enhanced::{
|
|
CuSolverScientific, EigenResult, FactorizationMethod, FactorizationResult,
|
|
IterativeSolveResult, LinearSolveResult, PCAResult, ScientificConfig,
|
|
};
|