cubecl_zspace/
lib.rs

1//! # Common ZSpace Utilities for CubeCL
2//!
3//! This is a new/experimental module.
4//!
5//! The goal will be to unify:
6//! - shape/stride construction/validation.
7//! - stride map view transformations.
8//! - common Shape types.
9//! - common Shape/Size/Reshape utility traits.
10//!
11//! The intention is to publish this as a stand-alone `zspace` module,
12//! with no direct tie to `cubecl`; once it is more polished.
13
14extern crate alloc;
15
16/// Striding utilities.
17pub mod striding;