Add the linear solve routines (Dgetrs, Dgels) to the lapack64 interface

This commit is contained in:
btracey
2015-08-03 23:55:26 -06:00
parent 6c115f0613
commit 376807a880
6 changed files with 137 additions and 10 deletions

View File

@@ -20,6 +20,10 @@ func TestDgelq2(t *testing.T) {
testlapack.Dgelq2Test(t, impl)
}
func TestDgels(t *testing.T) {
testlapack.DgelsTest(t, impl)
}
func TestDgelqf(t *testing.T) {
testlapack.DgelqfTest(t, impl)
}