Class CompressionStatistics
java.lang.Object
org.apache.sysds.runtime.compress.CompressionStatistics
Compression Statistics contain the main information gathered from the compression, such as sizes of the original
matrix, vs the compressed representation at different stages of the compression.
-
Field Summary
FieldsModifier and TypeFieldDescriptiondoubleCost of the compressed representationdoubleCompressed cost after compression but before finalizelongCompression size after compressing but before finalizelongCompressed sizelongSize if the input is densedoubleSummed cost after cocodingdoubleSummed cost estimated from individual columnslongEstimated size of compressing after co-codinglongEstimated size of compressing individual columnsdoubleCost calculated by the cost estimator on inputlongSize of the original inputlongSize if the input is sparse -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
originalSize
public long originalSizeSize of the original input -
denseSize
public long denseSizeSize if the input is dense -
sparseSize
public long sparseSizeSize if the input is sparse -
estimatedSizeCols
public long estimatedSizeColsEstimated size of compressing individual columns -
estimatedSizeCoCoded
public long estimatedSizeCoCodedEstimated size of compressing after co-coding -
compressedInitialSize
public long compressedInitialSizeCompression size after compressing but before finalize -
compressedSize
public long compressedSizeCompressed size -
originalCost
public double originalCostCost calculated by the cost estimator on input -
estimatedCostCols
public double estimatedCostColsSummed cost estimated from individual columns -
estimatedCostCoCoded
public double estimatedCostCoCodedSummed cost after cocoding -
compressedInitialCost
public double compressedInitialCostCompressed cost after compression but before finalize -
compressedCost
public double compressedCostCost of the compressed representation
-
-
Constructor Details
-
CompressionStatistics
public CompressionStatistics()
-
-
Method Details