Skip to content

Commit 1a150d3

Browse files
committed
remove logging
1 parent 56c2bec commit 1a150d3

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/main/java/org/apache/sysds/runtime/transform/encode/CompressedEncode.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,6 @@ private <T> AColGroup passThroughNormal(ColumnEncoderComposite c, final IColInde
401401

402402
if(a.getValueType() != ValueType.BOOLEAN // if not booleans
403403
&& (stats == null || !stats.shouldCompress || stats.valueType != a.getValueType())) {
404-
LOG.error("Create temporary Uncompressed ColumnGroupArray");
405404
return new ColGroupUncompressedArray(a, c._colID - 1, colIndexes);
406405
}
407406
else {
@@ -617,8 +616,6 @@ private void combineUncompressed(CompressedMatrixBlock mb) {
617616
else
618617
ret.add(g);
619618
}
620-
LOG.error(ucg);
621-
LOG.error(ret);
622619
if(ucg.size() > 0){
623620
ret.add(combine(ucg));
624621
nnz.addAndGet(ret.get(ret.size()-1).getNumberNonZeros(in.getNumRows()));

0 commit comments

Comments
 (0)