#[repr(C)]pub struct hipLaunchConfig_st {
pub gridDim: dim3,
pub blockDim: dim3,
pub dynamicSmemBytes: usize,
pub stream: hipStream_t,
pub attrs: *mut hipLaunchAttribute,
pub numAttrs: c_uint,
}Expand description
HIP extensible launch configuration
Fields§
§gridDim: dim3< Grid dimensions
blockDim: dim3< Block dimensions
dynamicSmemBytes: usize< Dynamic shared-memory size per thread block
stream: hipStream_t< Stream identifier
attrs: *mut hipLaunchAttribute< Attributes list
numAttrs: c_uint< Number of attributes
Trait Implementations§
Source§impl Clone for hipLaunchConfig_st
impl Clone for hipLaunchConfig_st
Source§fn clone(&self) -> hipLaunchConfig_st
fn clone(&self) -> hipLaunchConfig_st
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 moreSource§impl Debug for hipLaunchConfig_st
impl Debug for hipLaunchConfig_st
impl Copy for hipLaunchConfig_st
Auto Trait Implementations§
impl Freeze for hipLaunchConfig_st
impl RefUnwindSafe for hipLaunchConfig_st
impl !Send for hipLaunchConfig_st
impl !Sync for hipLaunchConfig_st
impl Unpin for hipLaunchConfig_st
impl UnwindSafe for hipLaunchConfig_st
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