Add Dgebrd, Dgebd2, and Dlabrd and tests

This commit is contained in:
btracey
2015-10-28 00:24:32 -06:00
parent d6fe31a937
commit bd71f87f5f
57 changed files with 17917 additions and 44 deletions

View File

@@ -12,6 +12,14 @@ import (
var impl = Implementation{}
func TestDgebd2(t *testing.T) {
testlapack.Dgebd2Test(t, impl)
}
func TestDgebrd(t *testing.T) {
testlapack.DgebrdTest(t, impl)
}
func TestDgecon(t *testing.T) {
testlapack.DgeconTest(t, impl)
}
@@ -52,6 +60,10 @@ func TestDgetrs(t *testing.T) {
testlapack.DgetrsTest(t, impl)
}
func TestDlabrd(t *testing.T) {
testlapack.DlabrdTest(t, impl)
}
func TestDlacpy(t *testing.T) {
testlapack.DlacpyTest(t, impl)
}
@@ -96,6 +108,26 @@ func TestDlartg(t *testing.T) {
testlapack.DlartgTest(t, impl)
}
func TestDlasq1(t *testing.T) {
testlapack.Dlasq1Test(t, impl)
}
func TestDlasq2(t *testing.T) {
testlapack.Dlasq2Test(t, impl)
}
func TestDlasq3(t *testing.T) {
testlapack.Dlasq3Test(t, impl)
}
func TestDlasq4(t *testing.T) {
testlapack.Dlasq4Test(t, impl)
}
func TestDlasq5(t *testing.T) {
testlapack.Dlasq5Test(t, impl)
}
func TestDlasr(t *testing.T) {
testlapack.DlasrTest(t, impl)
}