[][src]Enum rustacuda::context::SharedMemoryConfig

#[repr(u32)]pub enum SharedMemoryConfig {
    DefaultBankSize,
    FourByteBankSize,
    EightByteBankSize,
    // some variants omitted
}

This enumeration represents the options for configuring the shared memory bank size.

See CurrentContext::get_shared_memory_config and CurrentContext::set_shared_memory_config to get and set the cache config for the current context.

Variants

DefaultBankSize

Set shared-memory bank size to the default.

FourByteBankSize

Set shared-memory bank width to four bytes

EightByteBankSize

Set shared-memory bank width to eight bytes

Trait Implementations

impl Clone for SharedMemoryConfig[src]

impl Copy for SharedMemoryConfig[src]

impl Debug for SharedMemoryConfig[src]

impl Eq for SharedMemoryConfig[src]

impl Hash for SharedMemoryConfig[src]

impl PartialEq<SharedMemoryConfig> for SharedMemoryConfig[src]

impl StructuralEq for SharedMemoryConfig[src]

impl StructuralPartialEq for SharedMemoryConfig[src]

Auto Trait Implementations

impl RefUnwindSafe for SharedMemoryConfig

impl Send for SharedMemoryConfig

impl Sync for SharedMemoryConfig

impl Unpin for SharedMemoryConfig

impl UnwindSafe for SharedMemoryConfig

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.