[−][src]Enum rustacuda::context::CacheConfig
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
No preference for shared memory or L1 (default)
Prefer larger shared memory and smaller L1 cache
Prefer larger L1 cache and smaller shared memory
Prefer equal-sized L1 cache and shared memory
Trait Implementations
impl Clone for CacheConfig
[src]
fn clone(&self) -> CacheConfig
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for CacheConfig
[src]
impl Debug for CacheConfig
[src]
impl Eq for CacheConfig
[src]
impl Hash for CacheConfig
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl PartialEq<CacheConfig> for CacheConfig
[src]
fn eq(&self, other: &CacheConfig) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl StructuralEq for CacheConfig
[src]
impl StructuralPartialEq for CacheConfig
[src]
Auto Trait Implementations
impl RefUnwindSafe for CacheConfig
impl Send for CacheConfig
impl Sync for CacheConfig
impl Unpin for CacheConfig
impl UnwindSafe for CacheConfig
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,