Add Dlantr

This commit is contained in:
btracey
2015-09-05 12:18:05 -06:00
parent 4a39331af1
commit 88f250e5f0
7 changed files with 400 additions and 0 deletions

View File

@@ -13,6 +13,17 @@ import (
var impl = Implementation{}
func TestDlange(t *testing.T) {
testlapack.DlangeTest(t, impl)
}
// The results from Dlantr do not match the results from Dlange. In some cases,
// there also appear to be memory corruption issues.
// TODO(btracey): Re-enable this test when the implementations are fixed.
// func TestDlantr(t *testing.T) {
// testlapack.DlantrTest(t, impl)
// }
func TestDpotrf(t *testing.T) {
testlapack.DpotrfTest(t, impl)
}