solvr 0.2.0

Advanced computing library for real-world problem solving - optimization, differential equations, interpolation, statistics, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Global optimization algorithms.
//!
//! Provides methods for finding global minima of functions,
//! avoiding local minima traps that affect local optimization methods.
//!
//! All algorithms use tensor operations and are generic over `R: Runtime<DType = DType>`.

pub mod cpu;
pub mod impl_generic;
mod traits;

#[cfg(feature = "cuda")]
pub mod cuda;

#[cfg(feature = "wgpu")]
pub mod wgpu;

pub use traits::*;