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