mirror of
https://github.com/gonum/gonum.git
synced 2025-10-20 13:55:20 +08:00
Add Dgebrd, Dgebd2, and Dlabrd and tests
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
Reference in New Issue
Block a user