//! Minimal tensor abstraction for xtrain (Phase T2). //! //! Provides a `DType`, shape/stride helpers, reference-counted host/device //! `Storage`, and a `Tensor` with creation, host↔device transfer, and one //! elementwise CUDA op (`scale`) wired end-to-end. pub mod dtype; pub mod shape; pub mod storage; pub mod tensor; pub use dtype::{DType, TensorDType}; pub use shape::Dims; pub use storage::{Device, Storage}; pub use tensor::Tensor;