ferrum_engine/tensor_factory/mod.rs
1//! Candle-tied `TensorFactory` impl used by the registry's stub-executor
2//! factory.
3//!
4//! This module lived at `engine/src/backends/` until the `ComputeBackend`
5//! trait was deleted; the directory was renamed to `tensor_factory/` so
6//! the layout no longer suggests engine-level backend dispatch happens
7//! here. Real GPU dispatch goes through
8//! `ferrum_kernels::backend::Backend<B>` and its supertraits / capability
9//! bundles. The only remaining job in this module is to mint dummy
10//! tensors for the stub model executor (used by tests + the no-model
11//! happy path).
12
13pub mod candle;
14
15pub use self::candle::{CandleTensor, CandleTensorFactory, CandleTensorOps};