| 11 | /// CPU backend — uses candle CPU ops directly. |
| 12 | #[derive(Debug)] |
| 13 | pub struct CpuBackend { |
| 14 | device: Device, |
| 15 | } |
| 16 | |
| 17 | impl Default for CpuBackend { |
| 18 | fn default() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected