#[repr(C)]pub struct starpu_coo_interface {
pub id: starpu_data_interface_id,
pub columns: *mut u32,
pub rows: *mut u32,
pub values: usize,
pub nx: u32,
pub ny: u32,
pub n_values: u32,
pub elemsize: usize,
}Expand description
COO Matrices
Fields§
§id: starpu_data_interface_id< identifier of the interface
columns: *mut u32< column array of the matrix
rows: *mut u32< row array of the matrix
values: usize< values of the matrix
nx: u32< number of elements on the x-axis of the matrix
ny: u32< number of elements on the y-axis of the matrix
n_values: u32< number of values registered in the matrix
elemsize: usize< size of the elements of the matrix
Trait Implementations§
Source§impl Clone for starpu_coo_interface
impl Clone for starpu_coo_interface
Source§fn clone(&self) -> starpu_coo_interface
fn clone(&self) -> starpu_coo_interface
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 starpu_coo_interface
impl Debug for starpu_coo_interface
Source§impl Default for starpu_coo_interface
impl Default for starpu_coo_interface
impl Copy for starpu_coo_interface
Auto Trait Implementations§
impl Freeze for starpu_coo_interface
impl RefUnwindSafe for starpu_coo_interface
impl !Send for starpu_coo_interface
impl !Sync for starpu_coo_interface
impl Unpin for starpu_coo_interface
impl UnwindSafe for starpu_coo_interface
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