Trait JitRuntime
pub trait JitRuntime: Runtime<Device = Self::JitDevice, Server = Self::JitServer> {
type JitDevice: DeviceOps;
type JitServer: ComputeServer<Kernel = Box<dyn CubeTask<Self::Compiler>>, Feature = Feature>;
}
Expand description
Just-in-Time runtime extending the cube runtime.
Required Associated Types§
type JitDevice: DeviceOps
type JitDevice: DeviceOps
The device that should also implement [burn_tensor::backend::DeviceOps].
Object Safety§
This trait is not object safe.