//! Tensor module - PyTorch-compatible tensor operations in Python bindings
//!
//! This module provides a modular structure for tensor operations:
//! - `core` - Core PyTensor struct and basic operations
//! - `creation` - Tensor creation functions (zeros, ones, randn, etc.)
// Re-export the main types
pub use PyTensor;
pub use register_creation_functions;