Add dorgqr and tests, update dorg2r tests, and fix cgo dorgqr

This commit is contained in:
btracey
2015-10-27 11:36:46 -06:00
parent 676338c65e
commit be045bbf9a
12 changed files with 520 additions and 36 deletions

View File

@@ -104,6 +104,22 @@ func TestDlasv2(t *testing.T) {
testlapack.Dlasv2Test(t, impl)
}
func TestDorg2r(t *testing.T) {
testlapack.Dorg2rTest(t, impl)
}
func TestDorgl2(t *testing.T) {
testlapack.Dorgl2Test(t, impl)
}
func TestDorglq(t *testing.T) {
testlapack.DorglqTest(t, impl)
}
func TestDorgqr(t *testing.T) {
testlapack.DorgqrTest(t, impl)
}
func TestDorml2(t *testing.T) {
testlapack.Dorml2Test(t, impl)
}
@@ -120,14 +136,6 @@ func TestDorm2r(t *testing.T) {
testlapack.Dorm2rTest(t, impl)
}
func TestDorg2r(t *testing.T) {
testlapack.Dorg2rTest(t, impl)
}
func TestDorgl2(t *testing.T) {
testlapack.Dorgl2Test(t, impl)
}
func TestDpocon(t *testing.T) {
testlapack.DpoconTest(t, impl)
}