Skip to main content

rssn_advanced/tensor/
mod.rs

1//! Multi-dimensional tensor support: Shape, Stride, and TensorView.
2//!
3//! This module provides the foundational data types for multi-dimensional
4//! tensor operations. It is intentionally separate from the JIT compiler so
5//! that shape/stride metadata can be used independently of Cranelift.
6
7pub mod shape;
8pub mod view;