From 40ff0a52a6a7fa61a003228d59c1bf06278442fc Mon Sep 17 00:00:00 2001 From: margarita0303 Date: Thu, 14 Jul 2022 14:38:00 +0300 Subject: [PATCH] commented out new tests, they are too long --- .../core/TestDoubleLinearOpsAlgebra.kt | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/kmath-tensors/src/commonTest/kotlin/space/kscience/kmath/tensors/core/TestDoubleLinearOpsAlgebra.kt b/kmath-tensors/src/commonTest/kotlin/space/kscience/kmath/tensors/core/TestDoubleLinearOpsAlgebra.kt index a5e4954c7..c0d241a31 100644 --- a/kmath-tensors/src/commonTest/kotlin/space/kscience/kmath/tensors/core/TestDoubleLinearOpsAlgebra.kt +++ b/kmath-tensors/src/commonTest/kotlin/space/kscience/kmath/tensors/core/TestDoubleLinearOpsAlgebra.kt @@ -211,17 +211,17 @@ internal class TestDoubleLinearOpsTensorAlgebra { // testSVDGolabKahanFor(fromArray(intArrayOf(3, 5), buffer)) // } - @Test - fun testSVDGolabKahanBig() = DoubleTensorAlgebra{ - val tensor = DoubleTensorAlgebra.randomNormal(intArrayOf(100, 100, 100), 0) - testSVDGolabKahanFor(tensor) - } - - @Test - fun testSVDBig() = DoubleTensorAlgebra{ - val tensor = DoubleTensorAlgebra.randomNormal(intArrayOf(100, 100, 100), 0) - testSVDFor(tensor) - } +// @Test +// fun testSVDGolabKahanBig() = DoubleTensorAlgebra{ +// val tensor = DoubleTensorAlgebra.randomNormal(intArrayOf(100, 100, 100), 0) +// testSVDGolabKahanFor(tensor) +// } +// +// @Test +// fun testSVDBig() = DoubleTensorAlgebra{ +// val tensor = DoubleTensorAlgebra.randomNormal(intArrayOf(100, 100, 100), 0) +// testSVDFor(tensor) +// } @Test fun testBatchedSVDGolabKahan() = DoubleTensorAlgebra{