rssn-advanced 0.1.5

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

pub mod shape;
pub mod view;