numr 0.5.2

High-performance numerical computing with multi-backend GPU acceleration (CPU/CUDA/WebGPU)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Tensor types and operations
//!
//! This module provides the core `Tensor` type, which represents an n-dimensional
//! array stored on a compute device (CPU, GPU, etc.).

mod core;
pub mod id;
mod layout;
mod ops;
pub(crate) mod shape;
mod storage;
mod strides;

pub use core::Tensor;
pub use id::TensorId;
pub use layout::{Layout, Shape, Strides};
pub use storage::Storage;