Module tensor

Module tensor 

Source
Expand description

Tensor - Core N-Dimensional Array Type

The Tensor struct is the fundamental data structure in Axonml. It represents an N-dimensional array of numeric values with support for automatic broadcasting, device placement, and efficient memory sharing through views.

§Key Features

  • Generic over element type (f32, f64, i32, etc.)
  • Efficient views with shared storage
  • Device-agnostic operations
  • Broadcasting support
  • Lazy operations where possible

@version 0.1.0 @author AutomataNexus Development Team

Structs§

Tensor
An N-dimensional array of numeric values.