numr 0.5.1

High-performance numerical computing with multi-backend GPU acceleration (CPU/CUDA/WebGPU)
Documentation
1
2
3
4
5
6
7
//! WebGPU implementation of sparse LU factorization
//!
//! Uses WGSL compute shaders for scatter, sparse AXPY, pivot search, and gather.

mod lu;

pub use lu::{sparse_lu_simple_wgpu, sparse_lu_solve_wgpu, sparse_lu_wgpu};