Skip to main content

any_gpu/
lib.rs

1//! any-gpu — Tensor engine for every GPU. AMD, NVIDIA, Intel, Apple.
2//! One codebase, zero vendor lock-in. wgpu under the hood.
3// Unlicense — cochranblock.org
4// Contributors: GotEmCoach, KOVA, Claude Opus 4.6
5
6mod device;
7mod ops;
8mod tensor;
9pub mod autograd;
10pub mod nanosign;
11pub mod optim;
12pub mod train;
13
14pub use device::{GpuBuffer, GpuDevice};
15pub use tensor::Tensor;