Small LapackTest fix (#240)

Signed-off-by: AlexDBlack <blacka101@gmail.com>
master
Alex Black 2019-09-05 14:25:20 +10:00 committed by GitHub
parent bb41546ec7
commit 87d873929f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ public class LapackTest extends BaseNd4jTest {
@Test
public void testCholeskyU() {
INDArray A = Nd4j.create(new double[] {2, -1, 2, -1, 2, -1, 2, -1, 2,});
INDArray A = Nd4j.create(new double[] {3, -1, 2, -1, 3, -1, 2, -1, 3,});
A = A.reshape('f', 3, 3);
INDArray O = Nd4j.create(A.dataType(), A.shape());
Nd4j.copy(A, O);