Add QR factorization to lapack64 interface.

This commit is contained in:
btracey
2015-08-03 10:21:37 -06:00
parent a5bda2fc24
commit 0331cab04a
6 changed files with 105 additions and 2 deletions

View File

@@ -16,6 +16,14 @@ func TestDpotrf(t *testing.T) {
testlapack.DpotrfTest(t, impl)
}
func TestDgeqr2(t *testing.T) {
testlapack.Dgeqr2Test(t, impl)
}
func TestDgeqrf(t *testing.T) {
testlapack.DgeqrfTest(t, impl)
}
func TestDgetf2(t *testing.T) {
testlapack.Dgetf2Test(t, impl)
}