#[repr(u32)]pub enum CacheConfig {
PreferNone = 0,
PreferShared = 1,
PreferL1 = 2,
PreferEqual = 3,
// some variants omitted
}
Expand description
This enumeration represents configuration settings for devices which share hardware resources between L1 cache and shared memory.
Note that this is only a preference - the driver will use the requested configuration if possible, but it is free to choose a different configuration if required to execute functions.
See CurrentContext::get_cache_config and CurrentContext::set_cache_config to get and set the cache config for the current context.
Variants§
PreferNone = 0
No preference for shared memory or L1 (default)
Prefer larger shared memory and smaller L1 cache
PreferL1 = 2
Prefer larger L1 cache and smaller shared memory
PreferEqual = 3
Prefer equal-sized L1 cache 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 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