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 ShortOp
    Modifier and Type
    Field
    Description
    static 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 ShortOp
    Modifier and Type
    Method
    Description
    static 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
    ReduceArrays.reduce(short[] src, Range srcRange, short[] dst, Range dstRange, ShortOp op)
    Combine a range of elements from one short array with a range of elements in another short array.
    short
    SharedShort.reduce(short value, ShortOp op)
    Combine this reduction variable with the given value using the given operation.
    void
    SharedShortArray.reduce(int dstoff, short[] src, int srcoff, int len, ShortOp op)
    Combine a portion of this array reduction variable with a portion of the given array using the given operation.
    short
    SharedShortArray.reduce(int i, short value, ShortOp op)
    Combine this array reduction variable at the given index with the given value using the given operation.
    void
    SharedShortArray.reduce(short[] src, ShortOp op)
    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 ShortOp
    Modifier
    Constructor
    Description
     
    Construct 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.