pub struct Entry {
pub kind: &'static str,
pub func: u64,
pub grid: [u32; 3],
pub block: [u32; 3],
pub smem: u32,
pub args: Vec<u64>,
}Expand description
One enqueued op. kind separates kernels from memsets/copies so an op
appearing or vanishing shows up as a kind mismatch rather than arg noise.
Fields§
§kind: &'static str§func: u64§grid: [u32; 3]§block: [u32; 3]§smem: u32§args: Vec<u64>Args as u64 words: buffers are the raw address, scalars are LE-packed.
Trait Implementations§
impl Eq for Entry
impl StructuralPartialEq for Entry
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.