Interface ColGroupSizes
-
public interface ColGroupSizes
-
-
Field Summary
Fields Modifier and Type Field Description static org.apache.commons.logging.LogLOG
-
Method Summary
Static Methods Modifier and Type Method Description static longestimateInMemorySizeCONST(int nrColumns, boolean contiguousColumns, double tupleSparsity, boolean lossy)static longestimateInMemorySizeDDC(int nrCols, boolean contiguousColumns, int numTuples, int dataLength, double tupleSparsity, boolean lossy)static longestimateInMemorySizeEMPTY(int nrColumns, boolean contiguousColumns)static longestimateInMemorySizeGroup(int nrColumns, boolean contiguousColumns)static longestimateInMemorySizeGroupValue(int nrColumns, boolean contiguousColumns, int nrValues, double tupleSparsity, boolean lossy)static longestimateInMemorySizeLinearFunctional(int nrColumns, boolean contiguousColumns)static longestimateInMemorySizeOffset(int nrColumns, boolean contiguousColumns, int nrValues, int pointers, int offsetLength, double tupleSparsity, boolean lossy)static longestimateInMemorySizeOLE(int nrColumns, boolean contiguousColumns, int nrValues, int offsetLength, int nrRows, double tupleSparsity, boolean lossy)static longestimateInMemorySizeRLE(int nrColumns, boolean contiguousColumns, int nrValues, int nrRuns, int nrRows, double tupleSparsity, boolean lossy)static longestimateInMemorySizeSDC(int nrColumns, boolean contiguousColumns, int nrValues, int nrRows, int largestOff, double tupleSparsity, boolean largestOffZero, boolean lossy)static longestimateInMemorySizeUncompressed(int nrRows, boolean contiguousColumns, int nrColumns, double sparsity)
-
-
-
Method Detail
-
estimateInMemorySizeGroup
static long estimateInMemorySizeGroup(int nrColumns, boolean contiguousColumns)
-
estimateInMemorySizeGroupValue
static long estimateInMemorySizeGroupValue(int nrColumns, boolean contiguousColumns, int nrValues, double tupleSparsity, boolean lossy)
-
estimateInMemorySizeDDC
static long estimateInMemorySizeDDC(int nrCols, boolean contiguousColumns, int numTuples, int dataLength, double tupleSparsity, boolean lossy)
-
estimateInMemorySizeOffset
static long estimateInMemorySizeOffset(int nrColumns, boolean contiguousColumns, int nrValues, int pointers, int offsetLength, double tupleSparsity, boolean lossy)
-
estimateInMemorySizeOLE
static long estimateInMemorySizeOLE(int nrColumns, boolean contiguousColumns, int nrValues, int offsetLength, int nrRows, double tupleSparsity, boolean lossy)
-
estimateInMemorySizeRLE
static long estimateInMemorySizeRLE(int nrColumns, boolean contiguousColumns, int nrValues, int nrRuns, int nrRows, double tupleSparsity, boolean lossy)
-
estimateInMemorySizeSDC
static long estimateInMemorySizeSDC(int nrColumns, boolean contiguousColumns, int nrValues, int nrRows, int largestOff, double tupleSparsity, boolean largestOffZero, boolean lossy)
-
estimateInMemorySizeCONST
static long estimateInMemorySizeCONST(int nrColumns, boolean contiguousColumns, double tupleSparsity, boolean lossy)
-
estimateInMemorySizeEMPTY
static long estimateInMemorySizeEMPTY(int nrColumns, boolean contiguousColumns)
-
estimateInMemorySizeUncompressed
static long estimateInMemorySizeUncompressed(int nrRows, boolean contiguousColumns, int nrColumns, double sparsity)
-
estimateInMemorySizeLinearFunctional
static long estimateInMemorySizeLinearFunctional(int nrColumns, boolean contiguousColumns)
-
-