#[repr(C)]pub struct hipKernelNodeParams {
pub blockDim: dim3,
pub extra: *mut *mut c_void,
pub func: *mut c_void,
pub gridDim: dim3,
pub kernelParams: *mut *mut c_void,
pub sharedMemBytes: c_uint,
}
Fields§
§blockDim: dim3
§extra: *mut *mut c_void
§func: *mut c_void
§gridDim: dim3
§kernelParams: *mut *mut c_void
Trait Implementations§
Source§impl Clone for hipKernelNodeParams
impl Clone for hipKernelNodeParams
Source§fn clone(&self) -> hipKernelNodeParams
fn clone(&self) -> hipKernelNodeParams
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 hipKernelNodeParams
impl Debug for hipKernelNodeParams
impl Copy for hipKernelNodeParams
Auto Trait Implementations§
impl Freeze for hipKernelNodeParams
impl RefUnwindSafe for hipKernelNodeParams
impl !Send for hipKernelNodeParams
impl !Sync for hipKernelNodeParams
impl Unpin for hipKernelNodeParams
impl UnwindSafe for hipKernelNodeParams
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