phyz_gpu/lib.rs
1//! GPU-accelerated batch simulation using wgpu compute shaders.
2//!
3//! Implements parallel simulation of multiple independent environments
4//! using GPU compute shaders for ABA and integration.
5
6pub mod gpu_simulator;
7pub mod gpu_state;
8pub mod shaders;
9
10pub use gpu_simulator::GpuSimulator;
11pub use gpu_state::GpuState;