tang 0.2.0

Math library for physical reality — geometry, spatial algebra, tensor, training, GPU compute, and 3D gaussian splatting
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! N-dimensional arrays with CPU and GPU backends.

#![no_std]

extern crate alloc;

mod shape;
mod tensor;

pub use shape::Shape;
pub use tensor::Tensor;