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
//! CUDA implementation of spatial algorithms.
//!
//! This module implements the spatial algorithm traits for CUDA
//! by delegating to the generic implementations in `impl_generic/`.

mod balltree;
mod convex_hull;
mod delaunay;
mod distance;
mod distance_transform;
mod halfspace_intersection;
mod kdtree;
mod mesh;
mod procrustes;
mod rotation;
mod spherical_voronoi;
mod voronoi;