1#![deny(missing_docs)] 2//! Core tensor operations 3 4/// Error types for the core-ops module. 5pub mod error; 6 7/// module containing ops implementations. 8pub mod ops;