Class ColGroupConst
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.ColGroupConst
- All Implemented Interfaces:
Serializable,AOffsetsGroup,IContainADictionary,IContainDefaultTuple,IMapToDataGroup
public class ColGroupConst
extends ADictBasedColGroup
implements IContainDefaultTuple, AOffsetsGroup, IMapToDataGroup
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.sysds.runtime.compress.colgroup.AColGroup
AColGroup.CompressionType -
Method Summary
Modifier and TypeMethodDescriptionfinal voidaddToCommon(double[] constV) Take the values in this constant column group and add to the given constV.Append the other column group to this column group.appendNInternal(AColGroup[] g, int blen, int rlen) binaryRowOpLeft(BinaryOperator op, double[] v, boolean isRowSafe) Perform a binary row operation.binaryRowOpRight(BinaryOperator op, double[] v, boolean isRowSafe) Perform a binary row operation.centralMoment(CMOperator op, int nRows) Central Moment instruction executed on a column group.combineWithSameIndex(int nRow, int nCol, List<AColGroup> right) C bind the list of column groups with this column group.combineWithSameIndex(int nRow, int nCol, AColGroup right) C bind the given column group to this.voidcomputeColSums(double[] c, int nRows) Compute the column sumbooleancontainsValue(double pattern) Detect if the column group contains a specific value.static AColGroupcreate(double[] values) Generate a constant column group.static AColGroupcreate(int numCols, double value) Generate a constant column group.static AColGroupcreate(int numCols, IDictionary dict) Generate a constant column group.static AColGroupGenerate a constant column group.static AColGroupGenerate a constant column group.static AColGroupcreate(IColIndex colIndices, IDictionary dict) Create constructor for a ColGroup Const this constructor ensures that if the dictionary input is empty an Empty column group is constructed.org.apache.sysds.runtime.compress.colgroup.AColGroup.ColGroupTypegetCompressionInfo(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.double[]Get encoding of this column group.doublegetIdx(int r, int colIdx) Get the value at a colGroup specific row/column index position.longgetNumberNonZeros(int nRows) Get the number of nonZeros contained in this column group.intObtain number of distinct tuples in contained sets of values associated with this column group.doubleGet an approximate sparsity of this column groupdouble[]Get dense values from colgroupConst.voidleftMultByAColGroup(AColGroup lhs, MatrixBlock result, int nRows) Left side matrix multiplication with a column group that is transposed.voidleftMultByMatrixNoPreAgg(MatrixBlock matrix, MatrixBlock result, int rl, int ru, int cl, int cu) Left multiply with this column group.static ColGroupConstRecompress 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.replace(double pattern, double replace) Make a copy of the column group values, and replace all values that match pattern with replacement value.rexpandCols(int max, boolean ignore, boolean cast, int nRows) Expand the column group to multiple columns.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.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.toString()voidtsmm(double[] result, int numColumns, int nRows) voidtsmmAColGroup(AColGroup other, MatrixBlock result) Matrix multiply with this other column group, but: 1.Perform unary operation on the column group and return a new column groupMethods inherited from class org.apache.sysds.runtime.compress.colgroup.ADictBasedColGroup
copyAndSet, copyAndSet, decompressToDenseBlock, decompressToDenseBlockTransposed, decompressToSparseBlock, decompressToSparseBlockTransposed, estimateInMemorySize, getDictionary, getExactSizeOnDisk, reduceCols, rightMultByMatrix, writeMethods 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, clear, colSum, combine, decompressToDenseBlock, decompressToSparseBlock, get, getColIndices, getNumCols, morph, removeEmptyCols, rightDecompressingMult, rightMultByMatrix, selectionMultiply, shiftColIndices, sliceColumn, sliceColumns, sortColumnIndexes, splitReshapePushDown
-
Method Details
-
create
Create constructor for a ColGroup Const this constructor ensures that if the dictionary input is empty an Empty column group is constructed.- Parameters:
colIndices- The column indexes in the column groupdict- The dictionary to use- Returns:
- A Colgroup either const or empty.
-
create
Generate a constant column group.- Parameters:
values- The value vector that contains all the unique values for each column in the matrix.- Returns:
- A Constant column group.
-
create
Generate a constant column group. It is assumed that the column group is intended for use, therefore zero value is allowed.- Parameters:
cols- The specific column indexes that is contained in this constant group.value- The value contained in all cells.- Returns:
- A Constant column group.
-
create
Generate a constant column group.- Parameters:
cols- The specific column indexes that is contained in this constant group.values- The value vector that contains all the unique values for each column in the matrix.- Returns:
- A Constant column group.
-
create
Generate a constant column group.- Parameters:
numCols- The number of columns.dict- The dictionary to contain int the Constant group.- Returns:
- A Constant column group.
-
create
Generate a constant column group.- Parameters:
numCols- The number of columnsvalue- The value contained in all cells.- Returns:
- A Constant column group.
-
getValues
public double[] getValues()Get dense values from colgroupConst.- Returns:
- the dictionary vector stored in this column group
-
getCompType
Description copied from class:AColGroupObtain the compression type.- Specified by:
getCompTypein classAColGroup- Returns:
- How the elements of the column group are compressed.
-
getColGroupType
public org.apache.sysds.runtime.compress.colgroup.AColGroup.ColGroupType getColGroupType() -
getIdx
public double getIdx(int r, int colIdx) Description copied from class:AColGroupGet the value at a colGroup specific row/column index position. -
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.
-
addToCommon
public final void addToCommon(double[] constV) Take the values in this constant column group and add to the given constV. This allows us to completely ignore this column group for future calculations.- Parameters:
constV- The output columns.
-
computeColSums
public void computeColSums(double[] c, int nRows) Description copied from class:AColGroupCompute the column sum- Specified by:
computeColSumsin classAColGroup- Parameters:
c- The array to add the column sum to.nRows- The number of rows in the column group.
-
getNumValues
public int getNumValues()Description copied from class:AColGroupObtain number of distinct tuples in contained sets of values associated with this column group. If the column group is uncompressed the number or rows is returned.- Specified by:
getNumValuesin classAColGroup- Returns:
- the number of distinct sets of values associated with the bitmaps in this column group
-
tsmm
public void tsmm(double[] result, int numColumns, int nRows) -
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
-
leftMultByAColGroup
Description copied from class:AColGroupLeft side matrix multiplication with a column group that is transposed.- Specified by:
leftMultByAColGroupin classAColGroup- Parameters:
lhs- The left hand side Column group to multiply with, the left hand side should be considered transposed. Also it should be guaranteed that this column group is not empty.result- The result matrix to insert the result of the multiplication intonRows- Number of rows in the lhs colGroup
-
tsmmAColGroup
Description copied from class:AColGroupMatrix multiply with this other column group, but: 1. Only output upper triangle values. 2. Multiply both ways with "this" being on the left and on the right. It should be guaranteed that the input is not the same as the caller of the method. The second step is achievable by treating the initial multiplied matrix, and adding its values to the correct locations in the output.- Specified by:
tsmmAColGroupin classAColGroup- Parameters:
other- The other Column group to multiply withresult- The result matrix to put the results into
-
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.
-
getNumberNonZeros
public long getNumberNonZeros(int nRows) Description copied from class:AColGroupGet the number of nonZeros contained in this column group.- Specified by:
getNumberNonZerosin classAColGroup- Parameters:
nRows- The number of rows in the column group, this is used for groups that does not contain information about how many rows they have.- Returns:
- The nnz.
-
replace
Description copied from class:AColGroupMake a copy of the column group values, and replace all values that match pattern with replacement value. -
centralMoment
Description copied from class:AColGroupCentral Moment instruction executed on a column group.- Specified by:
centralMomentin classAColGroup- Parameters:
op- The Operator to use.nRows- The number of rows contained in the ColumnGroup.- Returns:
- A Central Moment object.
-
rexpandCols
Description copied from class:AColGroupExpand the column group to multiple columns. (one hot encode the column group)- Specified by:
rexpandColsin classAColGroup- Parameters:
max- The number of columns to expand to and cutoff values at.ignore- If zero and negative values should be ignored.cast- If the double values contained should be cast to whole numbers.nRows- The number of rows in the column group.- Returns:
- A new column group containing max number of columns.
-
getCost
Description copied from class:AColGroupGet the computation cost associated with this column group. -
read
- Throws:
IOException
-
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. -
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. -
appendNInternal
-
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
-
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.
-
getEncoding
Description copied from class:AColGroupGet encoding of this column group.- Overrides:
getEncodingin classAColGroup- Returns:
- The encoding of the index structure.
-
sameIndexStructure
- Specified by:
sameIndexStructurein classAColGroupCompressed
-
getDefaultTuple
public double[] getDefaultTuple()- Specified by:
getDefaultTuplein interfaceIContainDefaultTuple
-
toString
-
getOffsets
- Specified by:
getOffsetsin interfaceAOffsetsGroup
-
getMapToData
- Specified by:
getMapToDatain interfaceIMapToDataGroup
-
getSparsity
public double getSparsity()Description copied from class:AColGroupGet an approximate sparsity of this column group- Overrides:
getSparsityin classADictBasedColGroup- Returns:
- the approximate sparsity of this columngroup
-
combineWithSameIndex
Description copied from class:AColGroupC bind the given column group to this.- Overrides:
combineWithSameIndexin classAColGroup- Parameters:
nRow- The number of rows contained in the right and this column group.nCol- The number of columns in this.right- The column group to c-bind.- Returns:
- a new combined column groups.
-
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
-
combineWithSameIndex
Description copied from class:AColGroupC bind the list of column groups with this column group. the list of elements provided in the index of each list is guaranteed to have the same index structures- Overrides:
combineWithSameIndexin classAColGroup- Parameters:
nRow- The number of rows contained in all right and this column group.nCol- The number of columns to shift the right hand side column groups over when combining, this should only effect the column indexesright- The right hand side column groups to combine. NOTE only the index offset of the second nested list should be used. The reason for providing this nested list is to avoid redundant allocations in calling methods.- Returns:
- A combined compressed column group of the same type as this!.
-
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.
-