#[non_exhaustive]#[repr(u32)]pub enum cudaFlushGPUDirectRDMAWritesScope {
cudaFlushGPUDirectRDMAWritesToOwner = 100,
cudaFlushGPUDirectRDMAWritesToAllDevices = 200,
}Expand description
CUDA GPUDirect RDMA flush writes scopes
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.
cudaFlushGPUDirectRDMAWritesToOwner = 100
< Blocks until remote writes are visible to the CUDA device context owning the data.
cudaFlushGPUDirectRDMAWritesToAllDevices = 200
< Blocks until remote writes are visible to all CUDA device contexts.
Trait Implementations§
Source§impl Clone for cudaFlushGPUDirectRDMAWritesScope
impl Clone for cudaFlushGPUDirectRDMAWritesScope
Source§fn clone(&self) -> cudaFlushGPUDirectRDMAWritesScope
fn clone(&self) -> cudaFlushGPUDirectRDMAWritesScope
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 cudaFlushGPUDirectRDMAWritesScope
impl PartialEq for cudaFlushGPUDirectRDMAWritesScope
Source§fn eq(&self, other: &cudaFlushGPUDirectRDMAWritesScope) -> bool
fn eq(&self, other: &cudaFlushGPUDirectRDMAWritesScope) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for cudaFlushGPUDirectRDMAWritesScope
impl Eq for cudaFlushGPUDirectRDMAWritesScope
impl StructuralPartialEq for cudaFlushGPUDirectRDMAWritesScope
Auto Trait Implementations§
impl Freeze for cudaFlushGPUDirectRDMAWritesScope
impl RefUnwindSafe for cudaFlushGPUDirectRDMAWritesScope
impl Send for cudaFlushGPUDirectRDMAWritesScope
impl Sync for cudaFlushGPUDirectRDMAWritesScope
impl Unpin for cudaFlushGPUDirectRDMAWritesScope
impl UnwindSafe for cudaFlushGPUDirectRDMAWritesScope
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