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 ShortOp
ShortOp.AND
The short bitwise "and" binary operation.static final ShortOp
ShortOp.MAXIMUM
The short maximum binary operation.static final ShortOp
ShortOp.MINIMUM
The short minimum binary operation.static final ShortOp
ShortOp.OR
The short bitwise "or" binary operation.static final ShortOp
ShortOp.PRODUCT
The short product binary operation.static final ShortOp
ShortOp.SUM
The short sum binary operation.static final ShortOp
ShortOp.XOR
The short bitwise "exclusive or" binary operation.Methods in edu.rit.pj.reduction with parameters of type ShortOpModifier and TypeMethodDescriptionstatic void
ReduceArrays.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 void
Combine a range of elements from one short array with a range of elements in another short array.short
Combine this reduction variable with the given value using the given operation.void
Combine a portion of this array reduction variable with a portion of the given array using the given operation.short
Combine this array reduction variable at the given index with the given value using the given operation.void
Combine 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.