#[repr(u32)]
pub enum ResourceLimit {
    StackSize,
    PrintfFifoSize,
    MallocHeapSize,
    DeviceRuntimeSynchronizeDepth,
    DeviceRuntimePendingLaunchCount,
    MaxL2FetchGranularity,
    // some variants omitted
}
Expand description

This enumeration represents the limited resources which can be accessed through CurrentContext::get_resource_limit and CurrentContext::set_resource_limit.

Variants§

§

StackSize

The size in bytes of each GPU thread stack

§

PrintfFifoSize

The size in bytes of the FIFO used by the printf() device system call.

§

MallocHeapSize

The size in bytes of the heap used by the malloc() and free() device system calls.

Note that this is used for memory allocated within a kernel launch; it is not related to the device memory allocated by the host.

§

DeviceRuntimeSynchronizeDepth

The maximum nesting depth of a grid at which a thread can safely call cudaDeviceSynchronize() to wait on child grid launches to complete.

§

DeviceRuntimePendingLaunchCount

The maximum number of outstanding device runtime launches that can be made from the current context.

§

MaxL2FetchGranularity

L2 cache fetch granularity

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.