Class ColGroupDDCLZW
java.lang.Object
org.apache.sysds.runtime.compress.colgroup.AColGroup
org.apache.sysds.runtime.compress.colgroup.AColGroupCompressed
org.apache.sysds.runtime.compress.colgroup.ADictBasedColGroup
org.apache.sysds.runtime.compress.colgroup.AColGroupValue
org.apache.sysds.runtime.compress.colgroup.APreAgg
org.apache.sysds.runtime.compress.colgroup.ColGroupDDCLZW
- All Implemented Interfaces:
Serializable,IContainADictionary,IMapToDataGroup
Class to encapsulate information about a column group that is encoded with dense dictionary encoding (DDC) whose
mapping vector is additionally lzw compressed. Idea: - DDCLZW stores the mapping vector exclusively in compressed
form. - No persistent MapToData cache is maintained. - Sequential operations decode on-the-fly, while operations
requiring random access explicitly materialize and fall back to DDC.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.sysds.runtime.compress.colgroup.AColGroup
AColGroup.CompressionType -
Method Summary
Modifier and TypeMethodDescriptionAppend the other column group to this column group.binaryRowOpLeft(BinaryOperator op, double[] v, boolean isRowSafe) Perform a binary row operation.binaryRowOpRight(BinaryOperator op, double[] v, boolean isRowSafe) Perform a binary row operation.booleancontainsValue(double pattern) Detect if the column group contains a specific value.Converts the current ColGroupDDCLZW instance to a ColGroupDDC instance.static AColGroupcreate(IColIndex colIndexes, IDictionary dict, AMapToData data, int[] cachedCounts) longGet the upper bound estimate of in memory allocation for the column group.getCompressionInfo(int nRow) Get the compression info for this column group.Get the compression scheme for this column group to enable compression of other data.Obtain the compression type.doublegetCost(ComputationCostEstimator e, int nRows) Get the computation cost associated with this column group.longReturns the exact serialized size of column group.doublegetIdx(int r, int colIdx) Get the value at a colGroup specific row/column index position.voidleftMMIdentityPreAggregateDense(MatrixBlock that, MatrixBlock ret, int rl, int ru, int cl, int cu) voidleftMultByMatrixNoPreAgg(MatrixBlock matrix, MatrixBlock result, int rl, int ru, int cl, int cu) Left multiply with this column group.voidpreAggregateDense(MatrixBlock m, double[] preAgg, int rl, int ru, int cl, int cu) Pre aggregate a dense matrix block into a pre aggregate target (first step of left matrix multiplication)voidpreAggregateSparse(SparseBlock sb, double[] preAgg, int rl, int ru, int cl, int cu) static ColGroupDDCLZWRecompress this column group into a new column group.removeEmptyRows(boolean[] selectV, int rOut) Return a new column group containing only the selected rows in the given boolean vector.booleanPerform the specified scalar operation directly on the compressed column group, without decompressing individual cells if possible.sliceRows(int rl, int ru) Slice range of rows out of the column group and return a new column group only containing the row segment.sort()Sort the values of the column group according to double comparison operations and return as another compressed group.voidsparseSelection(MatrixBlock selection, ColGroupUtils.P[] points, MatrixBlock ret, int rl, int ru) splitReshape(int multiplier, int nRow, int nColOrg) This method returns a list of column groups that are naive splits of this column group as if it is reshaped.Perform unary operation on the column group and return a new column groupvoidwrite(DataOutput out) Methods inherited from class org.apache.sysds.runtime.compress.colgroup.APreAgg
getPreAggregateSize, leftMultByAColGroup, mmWithDictionary, preAggregate, preAggregateThatIndexStructure, tsmmAColGroupMethods inherited from class org.apache.sysds.runtime.compress.colgroup.AColGroupValue
centralMoment, clear, computeColSums, getCounts, getNumberNonZeros, getNumValues, replace, rexpandCols, toStringMethods inherited from class org.apache.sysds.runtime.compress.colgroup.ADictBasedColGroup
copyAndSet, copyAndSet, decompressToDenseBlock, decompressToDenseBlockTransposed, decompressToSparseBlock, decompressToSparseBlockTransposed, getDictionary, getSparsity, reduceCols, rightMultByMatrixMethods inherited from class org.apache.sysds.runtime.compress.colgroup.AColGroupCompressed
getMax, getMin, getSum, isEmpty, preAggRows, sameIndexStructure, tsmm, unaryAggregateOperations, unaryAggregateOperationsMethods inherited from class org.apache.sysds.runtime.compress.colgroup.AColGroup
addVector, appendN, colSum, combine, combineWithSameIndex, combineWithSameIndex, decompressToDenseBlock, decompressToSparseBlock, get, getColIndices, getEncoding, getNumCols, morph, removeEmptyCols, rightDecompressingMult, rightMultByMatrix, selectionMultiply, shiftColIndices, sliceColumn, sliceColumns, sortColumnIndexes, splitReshapePushDown
-
Method Details
-
create
public static AColGroup create(IColIndex colIndexes, IDictionary dict, AMapToData data, int[] cachedCounts) -
convertToDDC
Converts the current ColGroupDDCLZW instance to a ColGroupDDC instance. The method decompresses the LZW-compressed data of this instance, reconstructs the mapping to the decompressed data, and creates a new ColGroupDDC instance with the decompressed mapping, dictionary, and column indexes of this instance.- Returns:
- an AColGroup instance representing the decoded ColGroup in DDC format
-
read
- Throws:
IOException
-
write
- Overrides:
writein classADictBasedColGroup- Throws:
IOException
-
getIdx
public double getIdx(int r, int colIdx) Description copied from class:AColGroupGet the value at a colGroup specific row/column index position. -
getCompType
Description copied from class:AColGroupObtain the compression type.- Specified by:
getCompTypein classAColGroup- Returns:
- How the elements of the column group are compressed.
-
containsValue
public boolean containsValue(double pattern) Description copied from class:AColGroupDetect if the column group contains a specific value.- Specified by:
containsValuein classAColGroup- Parameters:
pattern- The value to look for.- Returns:
- boolean saying true if the value is contained.
-
getCost
Description copied from class:AColGroupGet the computation cost associated with this column group. -
getCompressionScheme
Description copied from class:AColGroupGet the compression scheme for this column group to enable compression of other data.- Specified by:
getCompressionSchemein classAColGroup- Returns:
- The compression scheme of this column group
-
estimateInMemorySize
public long estimateInMemorySize()Description copied from class:AColGroupGet the upper bound estimate of in memory allocation for the column group.- Overrides:
estimateInMemorySizein classAColGroupValue- Returns:
- an upper bound on the number of bytes used to store this ColGroup in memory.
-
getExactSizeOnDisk
public long getExactSizeOnDisk()Description copied from class:AColGroupReturns the exact serialized size of column group. This can be used for example for buffer preallocation.- Overrides:
getExactSizeOnDiskin classADictBasedColGroup- Returns:
- exact serialized size for column group
-
getMapToData
- Specified by:
getMapToDatain interfaceIMapToDataGroup
-
sameIndexStructure
- Specified by:
sameIndexStructurein classAColGroupCompressed
-
sliceRows
Description copied from class:AColGroupSlice range of rows out of the column group and return a new column group only containing the row segment. Note that this slice should maintain pointers back to the original dictionaries and only modify index structures. -
leftMultByMatrixNoPreAgg
public void leftMultByMatrixNoPreAgg(MatrixBlock matrix, MatrixBlock result, int rl, int ru, int cl, int cu) Description copied from class:AColGroupLeft multiply with this column group.- Specified by:
leftMultByMatrixNoPreAggin classAColGroup- Parameters:
matrix- The matrix to multiply with on the leftresult- The result to output the values into, always dense for the purpose of the column groups parallelizingrl- The row to begin the multiplication from on the lhs matrixru- The row to end the multiplication at on the lhs matrixcl- The column to begin the multiplication from on the lhs matrixcu- The column to end the multiplication at on the lhs matrix
-
scalarOperation
Description copied from class:AColGroupPerform the specified scalar operation directly on the compressed column group, without decompressing individual cells if possible.- Specified by:
scalarOperationin classAColGroup- Parameters:
op- operation to perform- Returns:
- version of this column group with the operation applied
-
unaryOperation
Description copied from class:AColGroupPerform unary operation on the column group and return a new column group- Specified by:
unaryOperationin classAColGroup- Parameters:
op- The operation to perform- Returns:
- The new column group
-
binaryRowOpLeft
Description copied from class:AColGroupPerform a binary row operation.- Specified by:
binaryRowOpLeftin classAColGroup- Parameters:
op- The operation to executev- The vector of values to apply the values contained should be at least the length of the highest value in the column indexisRowSafe- True if the binary op is applied to an entire zero row and all results are zero- Returns:
- A updated column group with the new values.
-
binaryRowOpRight
Description copied from class:AColGroupPerform a binary row operation.- Specified by:
binaryRowOpRightin classAColGroup- Parameters:
op- The operation to executev- The vector of values to apply the values contained should be at least the length of the highest value in the column indexisRowSafe- True if the binary op is applied to an entire zero row and all results are zero- Returns:
- A updated column group with the new values.
-
append
Description copied from class:AColGroupAppend the other column group to this column group. This method tries to combine them to return a new column group containing both. In some cases it is possible in reasonable time, in others it is not. The result is first this column group followed by the other column group in higher row values. If it is not possible or very inefficient null is returned. -
recompress
Description copied from class:AColGroupRecompress this column group into a new column group.- Specified by:
recompressin classAColGroup- Returns:
- A new or the same column group depending on optimization goal.
-
getCompressionInfo
Description copied from class:AColGroupGet the compression info for this column group.- Specified by:
getCompressionInfoin classAColGroup- Parameters:
nRow- The number of rows in this column group.- Returns:
- The compression info for this group.
-
sparseSelection
public void sparseSelection(MatrixBlock selection, ColGroupUtils.P[] points, MatrixBlock ret, int rl, int ru) -
splitReshape
Description copied from class:AColGroupThis method returns a list of column groups that are naive splits of this column group as if it is reshaped. This means the column groups rows are split into x number of other column groups where x is the multiplier. The indexes are assigned round robbin to each of the output groups, meaning the first index is assigned. If for instance the 4. column group is split by a 2 multiplier and there was 5 columns in total originally. The output becomes 2 column groups at column index 4 and one at 9. If possible the split column groups should reuse pointers back to the original dictionaries!- Specified by:
splitReshapein classAColGroup- Parameters:
multiplier- The number of column groups to split intonRow- The number of rows in this column group in case the underlying column group does not knownColOrg- The number of overall columns in the host CompressedMatrixBlock.- Returns:
- a list of split column groups
-
preAggregateDense
Description copied from class:APreAggPre aggregate a dense matrix block into a pre aggregate target (first step of left matrix multiplication)- Specified by:
preAggregateDensein classAPreAgg- Parameters:
m- The matrix to preAggregatepreAgg- The preAggregate targetrl- Row lower on the left side matrixru- Row upper on the left side matrixcl- Column lower on the left side matrix (or row lower in the column group)cu- Column upper on the left side matrix (or row upper in the column group)
-
preAggregateSparse
- Specified by:
preAggregateSparsein classAPreAgg
-
leftMMIdentityPreAggregateDense
public void leftMMIdentityPreAggregateDense(MatrixBlock that, MatrixBlock ret, int rl, int ru, int cl, int cu) - Specified by:
leftMMIdentityPreAggregateDensein classAPreAgg
-
removeEmptyRows
Description copied from class:AColGroupReturn a new column group containing only the selected rows in the given boolean vector. Whenever possible only modify the index structure, not the dictionary of the column groups.- Specified by:
removeEmptyRowsin classAColGroup- Parameters:
selectV- The selection vectorrOut- The number of rows in the output- Returns:
- The new column group
-
sort
Description copied from class:AColGroupSort the values of the column group according to double comparison operations and return as another compressed group. This sorting assumes that the column group is sorted independently of everything else.
-