Golub-Kahan SVD algorithm for KMP tensors #499

Closed
grinisrit wants to merge 64 commits from dev into dev
Showing only changes of commit 20695e9617 - Show all commits

View File

@ -211,17 +211,17 @@ internal class TestDoubleLinearOpsTensorAlgebra {
// testSVDGolabKahanFor(fromArray(intArrayOf(3, 5), buffer)) // testSVDGolabKahanFor(fromArray(intArrayOf(3, 5), buffer))
// } // }
@Test // @Test
fun testSVDGolabKahanBig() = DoubleTensorAlgebra{ // fun testSVDGolabKahanBig() = DoubleTensorAlgebra{
val tensor = DoubleTensorAlgebra.randomNormal(intArrayOf(100, 100, 100), 0) // val tensor = DoubleTensorAlgebra.randomNormal(intArrayOf(100, 100, 100), 0)
testSVDGolabKahanFor(tensor) // testSVDGolabKahanFor(tensor)
} // }
//
@Test // @Test
fun testSVDBig() = DoubleTensorAlgebra{ // fun testSVDBig() = DoubleTensorAlgebra{
val tensor = DoubleTensorAlgebra.randomNormal(intArrayOf(100, 100, 100), 0) // val tensor = DoubleTensorAlgebra.randomNormal(intArrayOf(100, 100, 100), 0)
testSVDFor(tensor) // testSVDFor(tensor)
} // }
@Test @Test
fun testBatchedSVDGolabKahan() = DoubleTensorAlgebra{ fun testBatchedSVDGolabKahan() = DoubleTensorAlgebra{