Uses of Class
edu.rit.mp.FloatBuf
Packages that use FloatBuf
Package
Description
The MP package provides low-level support for Message Passing.
The BUF package provides data buffers for Message Passing.
-
Uses of FloatBuf in edu.rit.mp
Methods in edu.rit.mp that return FloatBufModifier and TypeMethodDescriptionstatic FloatBufFloatBuf.buffer(float[] theArray) Create a buffer for the entire given float array.static FloatBufFloatBuf.buffer(float[][] theMatrix) Create a buffer for the entire given float matrix.static FloatBufFloatBuf.buffer(SharedFloat item) Create a buffer for a shared float item.static FloatBufFloatBuf.buffer(SharedFloatArray theArray) Create a buffer for the entire given shared float array.static FloatBufFloatBuf.colSliceBuffer(float[][] theMatrix, Range theColRange) Create a buffer for one column slice of the given float matrix.static FloatBuf[]FloatBuf.colSliceBuffers(float[][] theMatrix, Range[] theColRanges) Create an array of buffers for multiple column slices of the given float matrix.static FloatBufFloatBuf.emptyBuffer()Create an empty buffer.static FloatBufFloatBuf.patchBuffer(float[][] theMatrix, Range theRowRange, Range theColRange) Create a buffer for one patch of the given float matrix.static FloatBuf[]FloatBuf.patchBuffers(float[][] theMatrix, Range[] theRowRanges, Range[] theColRanges) Create an array of buffers for multiple patches of the given float matrix.static FloatBufFloatBuf.rowSliceBuffer(float[][] theMatrix, Range theRowRange) Create a buffer for one row slice of the given float matrix.static FloatBuf[]FloatBuf.rowSliceBuffers(float[][] theMatrix, Range[] theRowRanges) Create an array of buffers for multiple row slices of the given float matrix.static FloatBufFloatBuf.sliceBuffer(float[] theArray, Range theRange) Create a buffer for one slice of the given float array.static FloatBufFloatBuf.sliceBuffer(SharedFloatArray theArray, Range theRange) Create a buffer for one slice of the given shared float array.static FloatBuf[]FloatBuf.sliceBuffers(float[] theArray, Range[] theRanges) Create an array of buffers for multiple slices of the given float array.static FloatBuf[]FloatBuf.sliceBuffers(SharedFloatArray theArray, Range[] theRanges) Create an array of buffers for multiple slices of the given shared float array.Methods in edu.rit.mp with parameters of type FloatBufModifier and TypeMethodDescriptionprotected static voidFloatBuf.defaultCopy(FloatBuf theSrc, FloatBuf theDst) Copy items from the given source buffer to the given destination buffer. -
Uses of FloatBuf in edu.rit.mp.buf
Subclasses of FloatBuf in edu.rit.mp.bufModifier and TypeClassDescriptionclassClass EmptyFloatBuf provides a float buffer that contains no items for messages using the Message Protocol (MP).classClass FloatArrayBuf provides a buffer for an array of float items sent or received using the Message Protocol (MP).classClass FloatArrayBuf_1 provides a buffer for an array of float items sent or received using the Message Protocol (MP).classClass FloatItemBuf provides a buffer for a single float item sent or received using the Message Protocol (MP).classClass FloatMatrixBuf provides a buffer for a matrix of float items sent or received using the Message Protocol (MP).classClass FloatMatrixBuf_1 provides a buffer for a matrix of float items sent or received using the Message Protocol (MP).classClass SharedFloatArrayBuf provides a buffer for a multiple thread safe array of float items sent or received using the Message Protocol (MP).classClass SharedFloatArrayBuf_1 provides a buffer for a multiple thread safe array of float items sent or received using the Message Protocol (MP).classClass SharedFloatBuf provides a buffer for a shared float item sent or received using the Message Protocol (MP).