Skip to content

Commit 3203299

Browse files
committed
sum remove on combine
1 parent 4513643 commit 3203299

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/org/apache/sysds/runtime/compress/lib/CLALibCombineGroups.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,8 @@ public static AColGroup combine(AColGroup a, AColGroup b, int nRow) {
229229
ret = combineUC(combinedColumns, a, b);
230230

231231
try {
232+
if(!CompressedMatrixBlock.debug)
233+
return ret;
232234
double sumCombined = ret.getSum(nRow);
233235
double sumIndividualA = a.getSum(nRow);
234236
double sumIndividualB = b.getSum(nRow);

0 commit comments

Comments
 (0)