#[repr(C)]pub struct cudaLaunchAttributeValue__bindgen_ty_1 {
pub x: c_uint,
pub y: c_uint,
pub z: c_uint,
}
Expand description
Value of launch attribute ::cudaLaunchAttributeClusterDimension that represents the desired cluster dimensions for the kernel. Opaque type with the following fields: - \p x - The X dimension of the cluster, in blocks. Must be a divisor of the grid X dimension. - \p y - The Y dimension of the cluster, in blocks. Must be a divisor of the grid Y dimension. - \p z - The Z dimension of the cluster, in blocks. Must be a divisor of the grid Z dimension.
Fields§
§x: c_uint
§y: c_uint
§z: c_uint
Trait Implementations§
Source§impl Clone for cudaLaunchAttributeValue__bindgen_ty_1
impl Clone for cudaLaunchAttributeValue__bindgen_ty_1
Source§fn clone(&self) -> cudaLaunchAttributeValue__bindgen_ty_1
fn clone(&self) -> cudaLaunchAttributeValue__bindgen_ty_1
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 moreimpl Copy for cudaLaunchAttributeValue__bindgen_ty_1
Auto Trait Implementations§
impl Freeze for cudaLaunchAttributeValue__bindgen_ty_1
impl RefUnwindSafe for cudaLaunchAttributeValue__bindgen_ty_1
impl Send for cudaLaunchAttributeValue__bindgen_ty_1
impl Sync for cudaLaunchAttributeValue__bindgen_ty_1
impl Unpin for cudaLaunchAttributeValue__bindgen_ty_1
impl UnwindSafe for cudaLaunchAttributeValue__bindgen_ty_1
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