Add Dorgql, dependency, and helper function for test

This commit is contained in:
btracey
2016-02-09 16:51:47 -07:00
parent 29eff129d1
commit 1f2f7c6ead
9 changed files with 478 additions and 24 deletions

View File

@@ -36,6 +36,10 @@ func TestDgelq2(t *testing.T) {
testlapack.Dgelq2Test(t, impl)
}
func TestDgeql2(t *testing.T) {
testlapack.Dgeql2Test(t, impl)
}
func TestDgels(t *testing.T) {
testlapack.DgelsTest(t, impl)
}
@@ -164,6 +168,10 @@ func TestDorgbr(t *testing.T) {
testlapack.DorgbrTest(t, impl)
}
func TestDorg2l(t *testing.T) {
testlapack.Dorg2lTest(t, impl)
}
func TestDorgl2(t *testing.T) {
testlapack.Dorgl2Test(t, impl)
}
@@ -172,6 +180,10 @@ func TestDorglq(t *testing.T) {
testlapack.DorglqTest(t, impl)
}
func TestDorgql(t *testing.T) {
testlapack.DorgqlTest(t, impl)
}
func TestDorgqr(t *testing.T) {
testlapack.DorgqrTest(t, impl)
}