Uses of Class
edu.rit.pj.reduction.DoubleOp
Packages that use DoubleOp
Package
Description
The Reduction package provides a variety of reduction variables.
The Replica package provides replicated, shared reduction variables.
-
Uses of DoubleOp in edu.rit.pj.reduction
Fields in edu.rit.pj.reduction declared as DoubleOpModifier and TypeFieldDescriptionstatic final DoubleOpDoubleOp.MAXIMUMThe double maximum binary operation.static final DoubleOpDoubleOp.MINIMUMThe double minimum binary operation.static final DoubleOpDoubleOp.PRODUCTThe double product binary operation.static final DoubleOpDoubleOp.SUMThe double sum binary operation.Methods in edu.rit.pj.reduction with parameters of type DoubleOpModifier and TypeMethodDescriptionstatic voidReduceArrays.reduce(double[][] src, Range srcRowRange, Range srcColRange, double[][] dst, Range dstRowRange, Range dstColRange, DoubleOp op) Combine a range of elements from one double matrix with a range of elements in another double matrix.static voidCombine a range of elements from one double array with a range of elements in another double array.doubleCombine this reduction variable with the given value using the given operation.voidCombine this array reduction variable with the given array using the given operation.voidCombine a portion of this array reduction variable with a portion of the given array using the given operation.doubleCombine this array reduction variable at the given index with the given value using the given operation. -
Uses of DoubleOp in edu.rit.pj.replica
Constructors in edu.rit.pj.replica with parameters of type DoubleOpModifierConstructorDescriptionConstruct a new replicated, shared double reduction variable with the given reduction operator.ReplicatedDouble(DoubleOp op, double initialValue) Construct a new replicated, shared double reduction variable with the given reduction operator and initial value.ReplicatedDouble(DoubleOp op, double initialValue, int tag) Construct a new replicated, shared double reduction variable with the given reduction operator, initial value, and message tag.ReplicatedDouble(DoubleOp op, double initialValue, int tag, Comm comm) Construct a new replicated, shared double reduction variable with the given reduction operator, initial value, message tag, and communicator.