Merge from master

This commit is contained in:
btracey
2015-10-14 20:51:31 -06:00
13 changed files with 711 additions and 8 deletions

View File

@@ -64,6 +64,10 @@ func TestDlange(t *testing.T) {
testlapack.DlangeTest(t, impl)
}
func TestDlas2(t *testing.T) {
testlapack.Dlas2Test(t, impl)
}
func TestDlansy(t *testing.T) {
testlapack.DlansyTest(t, impl)
}
@@ -88,6 +92,14 @@ func TestDlarft(t *testing.T) {
testlapack.DlarftTest(t, impl)
}
func TestDlartg(t *testing.T) {
testlapack.DlartgTest(t, impl)
}
func TestDlasr(t *testing.T) {
testlapack.DlasrTest(t, impl)
}
func TestDlasv2(t *testing.T) {
testlapack.Dlasv2Test(t, impl)
}