kornia_tensor_ops/
lib.rs

1#![deny(missing_docs)]
2#![doc = env!("CARGO_PKG_DESCRIPTION")]
3
4/// Error types for the tensor-ops module.
5pub mod error;
6
7/// module containing the kernels for the tensor operations. (e.g. `kornia_tensor::ops::add`)
8pub mod kernels;
9
10/// module containing ops implementations.
11pub mod ops;
12
13pub use error::TensorOpsError;
14pub use ops::TensorOps;