1#[derive(Debug, Clone)] 2pub struct CudaBackend {} 3 4impl CudaBackend { 5 pub fn new() -> Self { Self {} } 6 // execute() removed - CUDA not implemented, use ops::fast::* with dispatch system 7}