mesh-sieve 4.0.1

Modular, high-performance Rust library for mesh and data management, designed for scientific computing and PDE codes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Native NVIDIA CUDA backend powered by `cudarc`.

mod buffer;
mod context;
#[cfg(feature = "cuda-cusparse")]
mod cusparse;
mod executor;
mod module_cache;

pub use buffer::CudaBuffer;
pub use context::{CudaBackend, CudaEvent, CudaOptions};
#[cfg(feature = "cuda-cusparse")]
pub use cusparse::CudaSparseScalar;
pub use executor::CudaFvmScalar;