testlapack: make tests independent

This commit is contained in:
kortschak
2016-02-15 14:23:02 +10:30
parent 1d7a2a405a
commit 3d87f56b23
52 changed files with 158 additions and 106 deletions

View File

@@ -18,6 +18,7 @@ type Dorglqer interface {
}
func DorglqTest(t *testing.T, impl Dorglqer) {
rnd := rand.New(rand.NewSource(1))
// TODO(btracey): Base tests off of nb and nx.
for _, test := range []struct{ m, n, k, lda int }{
{10, 10, 10, 0},
@@ -52,7 +53,7 @@ func DorglqTest(t *testing.T, impl Dorglqer) {
}
a := make([]float64, m*lda)
for i := range a {
a[i] = rand.Float64()
a[i] = rnd.Float64()
}
work := make([]float64, 1)
tau := make([]float64, m)