#[repr(C)]pub struct hipLaunchParams_t {
pub func: *mut c_void,
pub gridDim: dim3,
pub blockDim: dim3,
pub args: *mut *mut c_void,
pub sharedMem: usize,
pub stream: hipStream_t,
}
Expand description
struct hipLaunchParams_t
Fields§
§func: *mut c_void
< Device function symbol
gridDim: dim3
< Grid dimentions
blockDim: dim3
< Block dimentions
args: *mut *mut c_void
< Arguments
< Shared memory
stream: hipStream_t
< Stream identifier
Trait Implementations§
Source§impl Clone for hipLaunchParams_t
impl Clone for hipLaunchParams_t
Source§fn clone(&self) -> hipLaunchParams_t
fn clone(&self) -> hipLaunchParams_t
Returns a copy 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 hipLaunchParams_t
impl Debug for hipLaunchParams_t
impl Copy for hipLaunchParams_t
Auto Trait Implementations§
impl Freeze for hipLaunchParams_t
impl RefUnwindSafe for hipLaunchParams_t
impl !Send for hipLaunchParams_t
impl !Sync for hipLaunchParams_t
impl Unpin for hipLaunchParams_t
impl UnwindSafe for hipLaunchParams_t
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