1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
|
// Copyright ©2015 The Gonum Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package testlapack
import (
"testing"
"golang.org/x/exp/rand"
"gonum.org/v1/gonum/blas"
"gonum.org/v1/gonum/blas/blas64"
"gonum.org/v1/gonum/floats"
)
type Dgelser interface {
Dgels(trans blas.Transpose, m, n, nrhs int, a []float64, lda int, b []float64, ldb int, work []float64, lwork int) bool
}
func DgelsTest(t *testing.T, impl Dgelser) {
rnd := rand.New(rand.NewSource(1))
for _, trans := range []blas.Transpose{blas.NoTrans, blas.Trans} {
for _, test := range []struct {
m, n, nrhs, lda, ldb int
}{
{3, 4, 5, 0, 0},
{3, 5, 4, 0, 0},
{4, 3, 5, 0, 0},
{4, 5, 3, 0, 0},
{5, 3, 4, 0, 0},
{5, 4, 3, 0, 0},
{3, 4, 5, 10, 20},
{3, 5, 4, 10, 20},
{4, 3, 5, 10, 20},
{4, 5, 3, 10, 20},
{5, 3, 4, 10, 20},
{5, 4, 3, 10, 20},
{3, 4, 5, 20, 10},
{3, 5, 4, 20, 10},
{4, 3, 5, 20, 10},
{4, 5, 3, 20, 10},
{5, 3, 4, 20, 10},
{5, 4, 3, 20, 10},
{200, 300, 400, 0, 0},
{200, 400, 300, 0, 0},
{300, 200, 400, 0, 0},
{300, 400, 200, 0, 0},
{400, 200, 300, 0, 0},
{400, 300, 200, 0, 0},
{200, 300, 400, 500, 600},
{200, 400, 300, 500, 600},
{300, 200, 400, 500, 600},
{300, 400, 200, 500, 600},
{400, 200, 300, 500, 600},
{400, 300, 200, 500, 600},
{200, 300, 400, 600, 500},
{200, 400, 300, 600, 500},
{300, 200, 400, 600, 500},
{300, 400, 200, 600, 500},
{400, 200, 300, 600, 500},
{400, 300, 200, 600, 500},
} {
m := test.m
n := test.n
nrhs := test.nrhs
lda := test.lda
if lda == 0 {
lda = n
}
a := make([]float64, m*lda)
for i := range a {
a[i] = rnd.Float64()
}
aCopy := make([]float64, len(a))
copy(aCopy, a)
// Size of b is the same trans or no trans, because the number of rows
// has to be the max of (m,n).
mb := max(m, n)
nb := nrhs
ldb := test.ldb
if ldb == 0 {
ldb = nb
}
b := make([]float64, mb*ldb)
for i := range b {
b[i] = rnd.Float64()
}
bCopy := make([]float64, len(b))
copy(bCopy, b)
// Find optimal work length.
work := make([]float64, 1)
impl.Dgels(trans, m, n, nrhs, a, lda, b, ldb, work, -1)
// Perform linear solve
work = make([]float64, int(work[0]))
lwork := len(work)
for i := range work {
work[i] = rnd.Float64()
}
impl.Dgels(trans, m, n, nrhs, a, lda, b, ldb, work, lwork)
// Check that the answer is correct by comparing to the normal equations.
aMat := blas64.General{
Rows: m,
Cols: n,
Stride: lda,
Data: make([]float64, len(aCopy)),
}
copy(aMat.Data, aCopy)
szAta := n
if trans == blas.Trans {
szAta = m
}
aTA := blas64.General{
Rows: szAta,
Cols: szAta,
Stride: szAta,
Data: make([]float64, szAta*szAta),
}
// Compute Aᵀ * A if notrans and A * Aᵀ otherwise.
if trans == blas.NoTrans {
blas64.Gemm(blas.Trans, blas.NoTrans, 1, aMat, aMat, 0, aTA)
} else {
blas64.Gemm(blas.NoTrans, blas.Trans, 1, aMat, aMat, 0, aTA)
}
// Multiply by X.
X := blas64.General{
Rows: szAta,
Cols: nrhs,
Stride: ldb,
Data: b,
}
ans := blas64.General{
Rows: aTA.Rows,
Cols: X.Cols,
Stride: X.Cols,
Data: make([]float64, aTA.Rows*X.Cols),
}
blas64.Gemm(blas.NoTrans, blas.NoTrans, 1, aTA, X, 0, ans)
B := blas64.General{
Rows: szAta,
Cols: nrhs,
Stride: ldb,
Data: make([]float64, len(bCopy)),
}
copy(B.Data, bCopy)
var ans2 blas64.General
if trans == blas.NoTrans {
ans2 = blas64.General{
Rows: aMat.Cols,
Cols: B.Cols,
Stride: B.Cols,
Data: make([]float64, aMat.Cols*B.Cols),
}
} else {
ans2 = blas64.General{
Rows: aMat.Rows,
Cols: B.Cols,
Stride: B.Cols,
Data: make([]float64, aMat.Rows*B.Cols),
}
}
// Compute Aᵀ B if Trans or A * B otherwise
if trans == blas.NoTrans {
blas64.Gemm(blas.Trans, blas.NoTrans, 1, aMat, B, 0, ans2)
} else {
blas64.Gemm(blas.NoTrans, blas.NoTrans, 1, aMat, B, 0, ans2)
}
if !floats.EqualApprox(ans.Data, ans2.Data, 1e-12) {
t.Errorf("Normal equations not satisfied")
}
}
}
}
|