You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemds.apache.org by ar...@apache.org on 2022/06/08 21:07:43 UTC

[systemds] branch main updated: [MINOR] Cleanup unused methods

This is an automated email from the ASF dual-hosted git repository.

arnabp20 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git


The following commit(s) were added to refs/heads/main by this push:
     new 5808f22cb2 [MINOR] Cleanup unused methods
5808f22cb2 is described below

commit 5808f22cb2cb4acd5ce2a7081fdd22bdec338c20
Author: Arnab Phani <ph...@gmail.com>
AuthorDate: Wed Jun 8 22:58:55 2022 +0200

    [MINOR] Cleanup unused methods
---
 .../org/apache/sysds/runtime/matrix/data/MatrixBlock.java     | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/src/main/java/org/apache/sysds/runtime/matrix/data/MatrixBlock.java b/src/main/java/org/apache/sysds/runtime/matrix/data/MatrixBlock.java
index ee4e668c55..e2fa983343 100644
--- a/src/main/java/org/apache/sysds/runtime/matrix/data/MatrixBlock.java
+++ b/src/main/java/org/apache/sysds/runtime/matrix/data/MatrixBlock.java
@@ -665,17 +665,6 @@ public class MatrixBlock extends MatrixValue implements CacheBlock, Externalizab
 		}
 	}
 
-	public void denseSuperQuickSetValue(int r, int c, double v)
-	{
-		//early abort
-		if( denseBlock==null && v==0 )
-			return;
-
-		denseBlock.set(r, c, v);
-		if( v==0 )
-			nonZeros--;
-	}
-
 	public double quickGetValueThreadSafe(int r, int c) {
 		if(sparse) {
 			if(!(sparseBlock instanceof SparseBlockMCSR))