#[repr(transparent)]pub struct CUGPUDirectRDMAWritesOrdering_enum(pub c_uint);
Expand description
Platform native ordering for GPUDirect RDMA writes
Tuple Fields§
§0: c_uint
Implementations§
Source§impl CUGPUDirectRDMAWritesOrdering_enum
impl CUGPUDirectRDMAWritesOrdering_enum
Sourcepub const CU_GPU_DIRECT_RDMA_WRITES_ORDERING_NONE: CUGPUDirectRDMAWritesOrdering_enum
pub const CU_GPU_DIRECT_RDMA_WRITES_ORDERING_NONE: CUGPUDirectRDMAWritesOrdering_enum
< The device does not natively support ordering of remote writes. ::cuFlushGPUDirectRDMAWrites() can be leveraged if supported.
Source§impl CUGPUDirectRDMAWritesOrdering_enum
impl CUGPUDirectRDMAWritesOrdering_enum
Sourcepub const CU_GPU_DIRECT_RDMA_WRITES_ORDERING_OWNER: CUGPUDirectRDMAWritesOrdering_enum
pub const CU_GPU_DIRECT_RDMA_WRITES_ORDERING_OWNER: CUGPUDirectRDMAWritesOrdering_enum
< Natively, the device can consistently consume remote writes, although other CUDA devices may not.
Source§impl CUGPUDirectRDMAWritesOrdering_enum
impl CUGPUDirectRDMAWritesOrdering_enum
Sourcepub const CU_GPU_DIRECT_RDMA_WRITES_ORDERING_ALL_DEVICES: CUGPUDirectRDMAWritesOrdering_enum
pub const CU_GPU_DIRECT_RDMA_WRITES_ORDERING_ALL_DEVICES: CUGPUDirectRDMAWritesOrdering_enum
< Any CUDA device in the system can consistently consume remote writes to this device.
Trait Implementations§
Source§impl Clone for CUGPUDirectRDMAWritesOrdering_enum
impl Clone for CUGPUDirectRDMAWritesOrdering_enum
Source§fn clone(&self) -> CUGPUDirectRDMAWritesOrdering_enum
fn clone(&self) -> CUGPUDirectRDMAWritesOrdering_enum
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 CUGPUDirectRDMAWritesOrdering_enum
impl PartialEq for CUGPUDirectRDMAWritesOrdering_enum
Source§fn eq(&self, other: &CUGPUDirectRDMAWritesOrdering_enum) -> bool
fn eq(&self, other: &CUGPUDirectRDMAWritesOrdering_enum) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for CUGPUDirectRDMAWritesOrdering_enum
impl Eq for CUGPUDirectRDMAWritesOrdering_enum
impl StructuralPartialEq for CUGPUDirectRDMAWritesOrdering_enum
Auto Trait Implementations§
impl Freeze for CUGPUDirectRDMAWritesOrdering_enum
impl RefUnwindSafe for CUGPUDirectRDMAWritesOrdering_enum
impl Send for CUGPUDirectRDMAWritesOrdering_enum
impl Sync for CUGPUDirectRDMAWritesOrdering_enum
impl Unpin for CUGPUDirectRDMAWritesOrdering_enum
impl UnwindSafe for CUGPUDirectRDMAWritesOrdering_enum
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