#[repr(u32)]pub enum CacheConfig {
PreferNone = 0,
PreferShared = 1,
PreferL1 = 2,
PreferEqual = 3,
}Expand description
Preferred cache configuration for a CUDA context or function.
Controls the trade-off between L1 cache and shared memory on devices that share the same on-chip memory for both.
Variants§
PreferNone = 0
No preference — the driver picks.
Prefer more shared memory over L1 cache.
PreferL1 = 2
Prefer more L1 cache over shared memory.
PreferEqual = 3
Equal split between L1 and shared memory.
Trait Implementations§
Source§impl Clone for CacheConfig
impl Clone for CacheConfig
Source§fn clone(&self) -> CacheConfig
fn clone(&self) -> CacheConfig
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 Debug for CacheConfig
impl Debug for CacheConfig
Source§impl Hash for CacheConfig
impl Hash for CacheConfig
Source§impl PartialEq for CacheConfig
impl PartialEq for CacheConfig
impl Copy for CacheConfig
impl Eq for CacheConfig
impl StructuralPartialEq for CacheConfig
Auto Trait Implementations§
impl Freeze for CacheConfig
impl RefUnwindSafe for CacheConfig
impl Send for CacheConfig
impl Sync for CacheConfig
impl Unpin for CacheConfig
impl UnsafeUnpin for CacheConfig
impl UnwindSafe for CacheConfig
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