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 0cd1d8d commit 1d93f2fCopy full SHA for 1d93f2f
src/main/java/org/apache/sysds/runtime/compress/cocode/CoCodeGreedy.java
@@ -224,7 +224,8 @@ public Object call() throws Exception {
224
final int maxCombined = c1i.getNumVals() * c2i.getNumVals();
225
226
if(maxCombined < 0 // int overflow
227
- || maxCombined > c1i.getNumRows()) // higher combined than number of rows.
+ || maxCombined > c1i.getNumRows() // higher than number of rows
228
+ || maxCombined > 100000) // higher than 100k ... then lets not precalculate it.
229
return null;
230
231
final IColIndex c = _c1._indexes.combine(_c2._indexes);
0 commit comments