Skip to content

Commit 6a8a073

Browse files
committed
fix infinite recursion
1 parent afee50f commit 6a8a073

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/sysds/hops/OptimizerUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ public static long estimateSizeExactSparsity(long nrows, long ncols, double sp,
827827
if(dt == DataType.FRAME)
828828
return estimateSizeExactFrame(nrows, ncols);
829829
else
830-
return estimateSizeExactSparsity(nrows, ncols, sp, dt);
830+
return estimateSizeExactSparsity(nrows, ncols, sp);
831831
}
832832

833833
/**

0 commit comments

Comments
 (0)