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 595f4b7 commit bfcb133Copy full SHA for bfcb133
src/test/java/org/apache/sysds/test/functions/transform/ColumnDecoderMixedMethodsTest.java
@@ -43,7 +43,7 @@ public void setUp() {
43
public void testColumnDecoderMixedMethods() {
44
try {
45
int rows = 50000;
46
- double[][] arr = new double[rows][6];
+ double[][] arr = new double[rows][5];
47
for (int i = 0; i < rows; i++) {
48
arr[i][0] = (i % 4) + 2; // dummy column
49
arr[i][1] = 2*i + 1; // bin column
@@ -84,4 +84,4 @@ public void testColumnDecoderMixedMethods() {
84
throw new RuntimeException(ex);
85
}
86
87
-}
+}
0 commit comments