Type Alias CUoccupancyB2DSize

Source
pub type CUoccupancyB2DSize = Option<unsafe extern "C" fn(blockSize: c_int) -> usize>;
Expand description

Block size to per-block dynamic shared memory mapping for a certain kernel \param blockSize Block size of the kernel.

\return The dynamic shared memory needed by a block.

Aliased Type§

pub enum CUoccupancyB2DSize {
    None,
    Some(unsafe extern "C" fn(i32) -> usize),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(i32) -> usize)

Some value of type T.