pub struct CudaRuntime<'a> {
pub device: CudaDevice<'a>,
}Expand description
The CUDA Runtime implementation: executes a CudaModel on a CudaDevice.
Fields§
§device: CudaDevice<'a>The device this runtime executes on.
Trait Implementations§
Source§impl<'a> Runtime<'a> for CudaRuntime<'a>
impl<'a> Runtime<'a> for CudaRuntime<'a>
Auto Trait Implementations§
impl<'a> Freeze for CudaRuntime<'a>
impl<'a> RefUnwindSafe for CudaRuntime<'a>
impl<'a> !Send for CudaRuntime<'a>
impl<'a> !Sync for CudaRuntime<'a>
impl<'a> Unpin for CudaRuntime<'a>
impl<'a> UnsafeUnpin for CudaRuntime<'a>
impl<'a> UnwindSafe for CudaRuntime<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more