Skip to main content

ReduceArgs

Struct ReduceArgs 

Source
#[repr(C)]
pub struct ReduceArgs { pub input: u64, pub out: u64, pub n: u32, pub n_harts: u32, }
Expand description

Arguments for the data-parallel reduction kernel (reduce-rs).

Fields§

§input: u64

Device address of the input array (n × u32).

§out: u64

Device address of the output array (n_harts × one u64 per cache line).

§n: u32

Number of input elements.

§n_harts: u32

Number of participating harts.

Trait Implementations§

Source§

impl Clone for ReduceArgs

Source§

fn clone(&self) -> ReduceArgs

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for ReduceArgs

Source§

impl Debug for ReduceArgs

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl DeviceArgs for ReduceArgs

Source§

fn as_bytes(&self) -> &[u8]

Borrow the struct as its on-wire bytes (host side: stage these in device memory as the launch arguments).
Source§

unsafe fn from_ptr<'a>(ptr: *const u8) -> &'a Self

Reinterpret a device-memory pointer as these arguments (device side). Read more
Source§

impl Eq for ReduceArgs

Source§

impl PartialEq for ReduceArgs

Source§

fn eq(&self, other: &ReduceArgs) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for ReduceArgs

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.