We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 613f397 commit 4172e64Copy full SHA for 4172e64
src/main/java/org/apache/sysds/runtime/transform/encode/CompressedEncode.java
@@ -616,7 +616,8 @@ private void combineUncompressed(CompressedMatrixBlock mb) {
616
else
617
ret.add(g);
618
}
619
- ret.add(combine(ucg));
+ if(ucg.size() > 0)
620
+ ret.add(combine(ucg));
621
nnz.addAndGet(ret.get(ret.size()-1).getNumberNonZeros(in.getNumRows()));
622
mb.allocateColGroupList(ret);
623
0 commit comments