//! cartan-gpu: portable wgpu-based GPU compute primitives for the cartan ecosystem.
//!
//! v0.6 split: cartan-gpu provides Device + GpuBuffer + Kernel (wgpu compute);
//! FFT lives in the separate `gpufft` crate. With the `fft` feature, gpufft
//! is re-exported here for convenience.
pub use GpuBuffer;
pub use Device;
pub use GpuError;
pub use Kernel;
pub use wgpu;
pub use gpufft;