| 13 | /// CUDA backend — uses custom PTX kernels for fused operations. |
| 14 | #[derive(Debug)] |
| 15 | pub struct CudaBackend { |
| 16 | device: Device, |
| 17 | } |
| 18 | |
| 19 | impl CudaBackend { |
| 20 | pub fn new(device: Device) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected