#[non_exhaustive]#[repr(u32)]pub enum cudaGPUDirectRDMAWritesOrdering {
cudaGPUDirectRDMAWritesOrderingNone = 0,
cudaGPUDirectRDMAWritesOrderingOwner = 100,
cudaGPUDirectRDMAWritesOrderingAllDevices = 200,
}Expand description
CUDA GPUDirect RDMA flush writes ordering features of the device
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
cudaGPUDirectRDMAWritesOrderingNone = 0
< The device does not natively support ordering of GPUDirect RDMA writes. ::cudaFlushGPUDirectRDMAWrites() can be leveraged if supported.
cudaGPUDirectRDMAWritesOrderingOwner = 100
< Natively, the device can consistently consume GPUDirect RDMA writes, although other CUDA devices may not.
cudaGPUDirectRDMAWritesOrderingAllDevices = 200
< Any CUDA device in the system can consistently consume GPUDirect RDMA writes to this device.
Trait Implementations§
Source§impl Clone for cudaGPUDirectRDMAWritesOrdering
impl Clone for cudaGPUDirectRDMAWritesOrdering
Source§fn clone(&self) -> cudaGPUDirectRDMAWritesOrdering
fn clone(&self) -> cudaGPUDirectRDMAWritesOrdering
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for cudaGPUDirectRDMAWritesOrdering
impl PartialEq for cudaGPUDirectRDMAWritesOrdering
Source§fn eq(&self, other: &cudaGPUDirectRDMAWritesOrdering) -> bool
fn eq(&self, other: &cudaGPUDirectRDMAWritesOrdering) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for cudaGPUDirectRDMAWritesOrdering
impl Eq for cudaGPUDirectRDMAWritesOrdering
impl StructuralPartialEq for cudaGPUDirectRDMAWritesOrdering
Auto Trait Implementations§
impl Freeze for cudaGPUDirectRDMAWritesOrdering
impl RefUnwindSafe for cudaGPUDirectRDMAWritesOrdering
impl Send for cudaGPUDirectRDMAWritesOrdering
impl Sync for cudaGPUDirectRDMAWritesOrdering
impl Unpin for cudaGPUDirectRDMAWritesOrdering
impl UnwindSafe for cudaGPUDirectRDMAWritesOrdering
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