Lampisan commented on a change in pull request #1489:
URL: https://github.com/apache/systemds/pull/1489#discussion_r777990577



##########
File path: src/test/java/org/apache/sysds/test/TestUtils.java
##########
@@ -1802,6 +1802,16 @@ public static MatrixBlock generateTestMatrixBlock(int 
rows, int cols, double min
                return MatrixBlock.randOperations(rows, cols, sparsity, min, 
max, "Uniform", seed);
        }
 
+       public static MatrixBlock generateTestMatrixBlockSym(int rows, int 
cols, double min, double max, double sparsity, long seed){
+               MatrixBlock m = MatrixBlock.randOperations(rows, cols, 
sparsity, min, max, "Uniform", seed);
+               for(int i = 0; i < rows; i++) {

Review comment:
       If we use i=1 we ignore the first row/col completely.
   We changed it and it did not work, maybe we misunderstand




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to