any-gpu 0.1.0

Tensor engine for every GPU. AMD, NVIDIA, Intel, Apple. One codebase, zero vendor lock-in. wgpu under the hood.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! any-gpu — Tensor engine for every GPU. AMD, NVIDIA, Intel, Apple.
//! One codebase, zero vendor lock-in. wgpu under the hood.
// Unlicense — cochranblock.org
// Contributors: GotEmCoach, KOVA, Claude Opus 4.6

mod device;
mod ops;
mod tensor;
pub mod autograd;
pub mod nanosign;
pub mod optim;
pub mod train;

pub use device::{GpuBuffer, GpuDevice};
pub use tensor::Tensor;