Trait mpi::collective::Operation
[−]
[src]
pub trait Operation: AsRaw<Raw = MPI_Op> { fn is_commutative(&self) -> bool { ... } }
An operation to be used in a reduction or scan type operation, e.g. MPI_SUM
Provided Methods
fn is_commutative(&self) -> bool
Implementations on Foreign Types
impl<'a, T: 'a + Operation> Operation for &'a T
[src]
fn is_commutative(&self) -> bool
[src]
Implementors
impl Operation for SystemOperation
impl<'a, 'b> Operation for &'b UserOperation<'a>
impl<'a> Operation for &'a UnsafeUserOperation