Feature/tensors performance #497

Closed
margarita0303 wants to merge 91 commits from feature/tensors-performance into feature/tensors-performance
Showing only changes of commit 20695e9617 - Show all commits

View File

@ -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{