Skip to content

Commit 453d23c

Browse files
committed
reverts
1 parent a650a33 commit 453d23c

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/main/java/org/apache/sysds/utils/DoubleParser.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,7 @@ private static double shortcut(long significand, int power) {
372372
// 1) Both s and p can be represented exactly as 64-bit floating-point values
373373
// 2) Because s and p can be represented exactly as floating-point values,
374374
// then s * p and s / p will produce correctly rounded values.
375+
375376
if(power < 0) {
376377
d = d / DOUBLE_POWERS_OF_TEN[-power];
377378
}

src/main/python/systemds/operator/algorithm/builtin/incSliceLine.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,8 @@ def incSliceLine(addedX: Matrix,
6565
:param prevTK: previous top-k slices (for incremental updates)
6666
:param prevTKC: previous top-k scores (for incremental updates)
6767
:param encodeLat: flag for encoding output lattice for less memory consumption
68-
:param pruningStrat: pruning strategy: 0 all pruning, 1 all exact pruning,
69-
2 only score pruning, 3 only max score pruning,
70-
4 only size pruning, 5 no pruning
68+
:param pruningStrat: flag for disabling certain pruning strategies
69+
(0 all, 1 all exact (score and size), 2 no score, 3 no size, 4 none)
7170
:return: top-k slices (k x ncol(totalX) if successful)
7271
:return: score, size, error of slices (k x 3)
7372
:return: debug matrix, populated with enumeration stats if verbose

src/test/resources/log4j.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ log4j.rootLogger=ERROR,console
2424
log4j.logger.org.apache.sysds.api.DMLScript=OFF
2525
log4j.logger.org.apache.sysds.test=INFO
2626
log4j.logger.org.apache.sysds.test.AutomatedTestBase=ERROR
27-
log4j.logger.org.apache.sysds.test.functions.compress.table=DEBUG
2827
log4j.logger.org.apache.sysds=ERROR
2928
# log4j.logger.org.apache.sysds.hops.codegen.SpoofCompiler=TRACE
3029
# log4j.logger.org.apache.sysds.runtime.compress.workload=TRACE

0 commit comments

Comments
 (0)