Class CompressionSettingsBuilder
java.lang.Object
org.apache.sysds.runtime.compress.CompressionSettingsBuilder
Builder pattern for Compression Settings. See CompressionSettings for details on values.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionAdd a single valid compression type to the EnumSet of valid compressions.Clear all the compression types allowed in the compression.Copy the settings from another CompressionSettings Builder, modifies this, not that.create()Create the CompressionSettings object to use in the compression.setAllowSharedDictionary(boolean allowSharedDictionary) Allow the Dictionaries to be shared between different column groups.setCoCodePercentage(double coCodePercentage) Set the coCode percentage, the effect is different based on the coCoding strategy, but the general effect is that higher values results in more coCoding while lower values result in less.setColumnPartitioner(CoCoderFactory.PartitionerType columnPartitioner) Set the type of CoCoding Partitioner type to use for combining columns together.setCostType(CostEstimatorFactory.CostType costType) Set the cost type used for estimating the cost of column groups default is memory based.setEstimationType(SampleEstimatorFactory.EstimationType estimationType) Set the estimation type used for the sampled estimates.Inform the compression that it is executed in a spark instruction.setLossy(boolean lossy) Set the Compression to use Lossy compression.setMaxColGroupCoCode(int maxColGroupCoCode) Set the maximum number of columns to CoCode together in the CoCoding strategy.setMaxSampleSize(int maxSampleSize) Set the maximum sample size to extract from a given matrix, this overrules the sample percentage if the sample percentage extracted is higher than this maximum bound.setMinimumCompressionRatio(double ratio) Set the minimum compression ratio to be achieved by the compression.setMinimumSampleSize(int minimumSampleSize) Set the minimum sample size to extract from a given matrix, this overrules the sample percentage if the sample percentage extracted is lower than this minimum bound.setPreferDeltaEncoding(boolean preferDeltaEncoding) Set whether to prefer delta encoding during compression estimation.setSamplingRatio(double samplingRatio) Set the sampling ratio in percent to sample the input matrix.setScaleFactor(double[] scaleFactors) Sets the scale factors for compression, enabling quantization-fused compression.setSDCSortType(InsertionSorterFactory.SORT_TYPE sdcSortType) Set the sort type to use.setSeed(int seed) Set the seed for the compression operation.setSortValuesByLength(boolean sortValuesByLength) Set the sortValuesByLength flag.setTransposeInput(String transposeInput) Specify if the input matrix should be transposed before compression.setValidCompressions(EnumSet<AColGroup.CompressionType> validCompressions) Set the valid compression strategies used for the compression.
-
Constructor Details
-
CompressionSettingsBuilder
public CompressionSettingsBuilder()
-
-
Method Details
-
setScaleFactor
Sets the scale factors for compression, enabling quantization-fused compression.- Parameters:
scaleFactors- An array of scale factors applied during compression. - If row-wise scaling is used, this should be an array where each value corresponds to a row. - If a single scalar is provided, it is applied uniformly to the entire matrix.- Returns:
- The CompressionSettingsBuilder instance with the updated scale factors.
-
copySettings
Copy the settings from another CompressionSettings Builder, modifies this, not that.- Parameters:
that- The other CompressionSettingsBuilder to copy settings from.- Returns:
- The modified CompressionSettings in the same object.
-
setLossy
Set the Compression to use Lossy compression.- Parameters:
lossy- A boolean specifying if the compression should be lossy- Returns:
- The CompressionSettingsBuilder
-
setSamplingRatio
Set the sampling ratio in percent to sample the input matrix. Input value should be in range 0.0 - 1.0- Parameters:
samplingRatio- The ratio to sample from the input- Returns:
- The CompressionSettingsBuilder
-
setSortValuesByLength
Set the sortValuesByLength flag. This sorts the dictionaries containing the data based on their occurences in the ColGroup. Improving cache efficiency especially for diverse column groups.- Parameters:
sortValuesByLength- A boolean specifying if the values should be sorted- Returns:
- The CompressionSettingsBuilder
-
setTransposeInput
Specify if the input matrix should be transposed before compression. This improves cache efficiency while compression the input matrix- Parameters:
transposeInput- string specifying if the input should be transposed before compression, should be one of "auto", "true" or "false"- Returns:
- The CompressionSettingsBuilder
-
setSeed
Set the seed for the compression operation.- Parameters:
seed- The seed used in sampling the matrix and general operations in the compression.- Returns:
- The CompressionSettingsBuilder
-
setValidCompressions
public CompressionSettingsBuilder setValidCompressions(EnumSet<AColGroup.CompressionType> validCompressions) Set the valid compression strategies used for the compression.- Parameters:
validCompressions- An EnumSet of CompressionTypes to use in the compression- Returns:
- The CompressionSettingsBuilder
-
addValidCompression
Add a single valid compression type to the EnumSet of valid compressions.- Parameters:
cp- The compression type to add to the valid ones.- Returns:
- The CompressionSettingsBuilder
-
clearValidCompression
Clear all the compression types allowed in the compression. This will only allow the Uncompressed ColGroup type. Since this is required for operation of the compression- Returns:
- The CompressionSettingsBuilder
-
setColumnPartitioner
public CompressionSettingsBuilder setColumnPartitioner(CoCoderFactory.PartitionerType columnPartitioner) Set the type of CoCoding Partitioner type to use for combining columns together.- Parameters:
columnPartitioner- The Strategy to select from PartitionerType- Returns:
- The CompressionSettingsBuilder
-
setMaxColGroupCoCode
Set the maximum number of columns to CoCode together in the CoCoding strategy. Compression time increase with higher numbers.- Parameters:
maxColGroupCoCode- The max selected.- Returns:
- The CompressionSettingsBuilder
-
setCoCodePercentage
Set the coCode percentage, the effect is different based on the coCoding strategy, but the general effect is that higher values results in more coCoding while lower values result in less. Note that with high coCoding the compression ratio would possibly be lower.- Parameters:
coCodePercentage- The percentage to set.- Returns:
- The CompressionSettingsBuilder
-
setMinimumSampleSize
Set the minimum sample size to extract from a given matrix, this overrules the sample percentage if the sample percentage extracted is lower than this minimum bound.- Parameters:
minimumSampleSize- The minimum sample size to extract- Returns:
- The CompressionSettingsBuilder
-
setMaxSampleSize
Set the maximum sample size to extract from a given matrix, this overrules the sample percentage if the sample percentage extracted is higher than this maximum bound.- Parameters:
maxSampleSize- The maximum sample size to extract- Returns:
- The CompressionSettingsBuilder
-
setEstimationType
public CompressionSettingsBuilder setEstimationType(SampleEstimatorFactory.EstimationType estimationType) Set the estimation type used for the sampled estimates.- Parameters:
estimationType- the estimation type in used.- Returns:
- The CompressionSettingsBuilder
-
setCostType
Set the cost type used for estimating the cost of column groups default is memory based.- Parameters:
costType- The Cost type wanted- Returns:
- The CompressionSettingsBuilder
-
setMinimumCompressionRatio
Set the minimum compression ratio to be achieved by the compression.- Parameters:
ratio- The ratio to achieve while compressing- Returns:
- The CompressionSettingsBuilder
-
setIsInSparkInstruction
Inform the compression that it is executed in a spark instruction.- Returns:
- The CompressionSettingsBuilder
-
setSDCSortType
Set the sort type to use.- Parameters:
sdcSortType- The sort type for the construction of SDC groups- Returns:
- The CompressionSettingsBuilder
-
setPreferDeltaEncoding
Set whether to prefer delta encoding during compression estimation. When enabled, the compression estimator will use delta encoding statistics instead of regular encoding statistics.- Parameters:
preferDeltaEncoding- Whether to prefer delta encoding- Returns:
- The CompressionSettingsBuilder
-
create
Create the CompressionSettings object to use in the compression.- Returns:
- The CompressionSettings
-